29 lines
322 B
C
29 lines
322 B
C
#ifndef HEAD
|
|
#define HEAD
|
|
|
|
#include <stdio.h>
|
|
#include <wchar.h>
|
|
|
|
// GET
|
|
int buffinput(int *x, int *inbuf, int *buff);
|
|
|
|
|
|
// FUNC
|
|
void func1();
|
|
|
|
void func2();
|
|
|
|
void func3();
|
|
|
|
|
|
// DEFINE
|
|
#define clear; printf("\n \033[H\033[J \n");
|
|
|
|
#define BUFFMAX 20
|
|
#define XMAX 23
|
|
|
|
#define FUNC1 3
|
|
#define FUNC2 8
|
|
#define FUNC3 4
|
|
#endif
|