This repository has been archived on 2026-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LightTAM/include/main.h
T

19 lines
292 B
C

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifndef __MAIN_H__
#define __MAIN_H__
#define TRUE !0
#define FALSE 0
#define BYTE uint8_t
#define MIN_X_TERMINAL_SIZE 50
#define MIN_Y_TERMINAL_SIZE 20
void handle_sigint(int sig);
int main(int argc, char const **argv);
#endif