Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 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
}