source: trunk/minix/lib/ansi/toupper.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 84 bytes
Line 
1#include <ctype.h>
2
3int toupper(int c) {
4 return islower(c) ? c - 'a' + 'A' : c ;
5}
Note: See TracBrowser for help on using the repository browser.