summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/toupper.c
blob: c048e60bb8c9eb51446e2aaf32d2b512a7557d42 (plain)
1
2
3
4
5
6
#include <ctype.h>

inline int toupper(int c) {
  return (c>='a' && c<='z')?c-'a'+'A':c;
}