This commit is contained in:
2025-11-25 09:03:13 +07:00
parent 900f59059e
commit deb82891bb
6 changed files with 252 additions and 68 deletions
+14 -8
View File
@@ -2,6 +2,7 @@
#define HEAD
#include <stdio.h>
#include <locale.h>
#include <wchar.h>
@@ -10,22 +11,27 @@ int buffinput(int *x, int *inbuf, int *buff);
// FUNC
void func1(int f, int *x, int inbuff, int *buff);
void func1(char **f, int *x, int inbuff, int *buff);
void func2(int f, int *x, int inbuff, int *buff);
void func2(char **f, int *x, int inbuff, int *buff);
void func3(int f, int *x, int inbuff, int *buff);
void func3(char **f, int *x, int inbuff, int *buff);
int last(int inbuff,int *buff);
void put(int i,int *x,int inbuff,int *buff);
void count(int *x);
int str(char *a,char *b);
int strbuff(char *a,int *b);
int funcReturn(char *f);
// DEFINE
#define clear; printf("\n \033[H\033[J \n");
#define clear printf("\n \033[H\033[J \n")
#define BUFFMAX 20
#define XMAX 31
#define FUNC1 3
#define FUNC2 8
#define FUNC3 4
#endif