32 lines
452 B
C
32 lines
452 B
C
#ifndef HEAD
|
|
#define HEAD
|
|
|
|
#include <stdio.h>
|
|
#include <wchar.h>
|
|
|
|
|
|
// GET
|
|
int buffinput(int *x, int *inbuf, int *buff);
|
|
|
|
|
|
// FUNC
|
|
void func1(int f, int *x, int inbuff, int *buff);
|
|
|
|
void func2(int f, int *x, int inbuff, int *buff);
|
|
|
|
void func3(int f, int *x, int inbuff, int *buff);
|
|
|
|
void count(int *x);
|
|
|
|
|
|
// DEFINE
|
|
#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
|