summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/isalpha.c
blob: 130f4933a2a6962f2c55120d5e36ec86a81d4480 (plain)
1
2
3
4
#include <ctype.h>

// https://pubs.opengroup.org/onlinepubs/9699919799/functions/isalpha.html
int isalpha(int c) { return (('A' <= toupper(c)) && ('Z' >= toupper(c))); }