6 lines
65 B
C
6 lines
65 B
C
|
#include <ctype.h>
|
||
|
|
||
|
int (isalnum)(int c) {
|
||
|
return isalnum(c);
|
||
|
}
|