summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/isdigit.c
blob: 790b9f1c77892b4abe7eff5006cdcc3584059bf6 (plain)
1
2
3
4
5
6
#include <ctype.h>

// https://pubs.opengroup.org/onlinepubs/9699919799/functions/isdigit.html
int isdigit(int c) {
  return ('0' <= c && c <= '9');
}