Long time no see

This commit is contained in:
2026-02-21 10:47:00 +07:00
parent 0d54fe176e
commit b7df98a55c
198 changed files with 3249 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "func.h"
void clear(void){
printf("\n \033[H\033[J \n\n");
}
int flush(void){
int c;
while ((c = getwchar()) != '\n')
if (c<32 && c!='\t') return 1;
return 0;
}
int end(int c){
if (c<32 && c!= L'\n' && c!=L'\t') return 1;
return 0;
}