blob: 74277a4164d31e6f9e850c5e3d38c66bb1f529b7 [file] [log] [blame]
#include <stdio.h>
#include <cctype>
#include <cwctype>
int main() {
using namespace std;
printf("%d ", isdigit('0'));
printf("%d ", iswdigit(L'0'));
return 0;
}