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

inline int isalpha(int c) {
  return (c>='a' && c<='z') || (c>='A' && c<='Z');
}