minix/lib/libc/ansi/isxdigit.c

6 lines
67 B
C

#include <ctype.h>
int (isxdigit)(int c) {
return isxdigit(c);
}