Subversion Repositories Kolibri OS

Rev

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

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