summaryrefslogtreecommitdiff
path: root/kernel/libc/ctype/isdigit.c
blob: 0d4f0768264c0a8a5d2cc88305ce5c9251f2f094 (plain)
1
2
3
4
5
#include <ctype.h>

int isdigit(int c) {
  return ('0' <= c && c <= '9');
}