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

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