Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdlib.h>
  2. /*
  3. ** return upper-case of c if it is lower-case, else c
  4. */
  5. unsigned char toupper(unsigned char c)
  6. {
  7.   if(c<='z' && c>='a') return (c-32);
  8.   return (c);
  9. }
  10.