mirror of https://github.com/flysand7/ciabatta.git
11 lines
154 B
C
11 lines
154 B
C
|
|
||
|
#include <wctype.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
if(iswalpha(L'я')) {
|
||
|
printf("Symbol 'я' is indeed a letter\n");
|
||
|
}
|
||
|
return 0;
|
||
|
}
|