Subversion Repositories Kolibri OS

Rev

Rev 8793 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include <ctype.h>
  2.  
  3. int tolower(int c)
  4. {
  5.     if (isupper(c))
  6.         return c | 32;
  7.     return c;
  8. }
  9.