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 lower-case of c if upper-case, else c
  4. */
  5. unsigned char tolower(unsigned char c)
  6. {
  7.   if(c<='Z' && c>='A') return (c+32);
  8.   return (c);
  9. }
  10.