Subversion Repositories Kolibri OS

Rev

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

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