isalnum.c 77 B

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