38 lines
591 B
C
38 lines
591 B
C
#ifndef HEAD
|
|
#define HEAD
|
|
|
|
#include <stdio.h>
|
|
#include <locale.h>
|
|
#include <wchar.h>
|
|
|
|
|
|
// GET
|
|
int buffinput(int *x, int *inbuf, int *buff);
|
|
|
|
|
|
// FUNC
|
|
void func1(char **f, int *x, int inbuff, int *buff);
|
|
|
|
void func2(char **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 BUFFMAX 20
|
|
#define XMAX 31
|
|
#endif
|