lmao
This commit is contained in:
@@ -7,12 +7,12 @@ void clear(void){
|
||||
|
||||
int flush(void){
|
||||
int c;
|
||||
while ((c = getchar()) != '\n')
|
||||
while ((c = getwchar()) != '\n')
|
||||
if (c<32 && c!='\t') return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int end(int c){
|
||||
if (c<32 && c!= '\n' && c!='\t') return 1;
|
||||
return 0;
|
||||
if (c<32 && c!= L'\n' && c!=L'\t') return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user