summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/isupper.c
blob: 9df4fb5d99dffc49b49e5366610f9705ebbc1cfe (plain)
1
2
3
4
5
#include <ctype.h>

int isupper(int c) {
  return (c >= 'A' && c <= 'Z');
}