u_ttt/include/common.h
Yorick Barbanneau f33b6c8acb Add model
2021-10-01 00:03:33 +02:00

27 lines
436 B
C

#ifndef COMMON_H
#define COMMON_H
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <libgen.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
#include <unistd.h>
typedef unsigned int uint;
/*Status code to represent respectively,
a negative answer,
a positive answer,
an almost positive answer
*/
typedef enum {
NO,
YES,
ALMOST,
} e_status;
#endif /*COMMON*/