16 lines
260 B
C
16 lines
260 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
#ifndef __MAIN_H__
|
|
#define __MAIN_H__
|
|
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
#define BYTE uint8_t
|
|
#define MIN_X_TERMINAL_SIZE 80
|
|
#define MIN_Y_TERMINAL_SIZE 30
|
|
|
|
int main(int argc, char const **argv);
|
|
|
|
#endif |