7 lines
91 B
C
7 lines
91 B
C
|
#include <ctype.h>
|
||
|
#undef isdigit
|
||
|
|
||
|
int isdigit(int c) {
|
||
|
return (unsigned)c-'0' < 10;
|
||
|
}
|