1#include <ctype.h>
2
3int isalnum(int c) {
4    return isalpha(c) || isdigit(c);
5}
6