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