summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/liblatin1/latin1-islower.c
blob: cab1a517122720e597bacaf01304dd9f73c1ccf9 (plain)
1
2
3
4
5
#include <ctype.h>

int islower(int c) {
  return (c>='a' && c<='z') || (c>=223 && c<=255 && c!=247);
}