2024-12-11 15:27:34 -05:00

17 lines
198 B
C

#ifndef UTIL_H
#define UTIL_H
#include <assert.h>
typedef char *string;
string String(char *);
typedef char bool;
#define TRUE 1;
#define FALSE 0;
void *checked_malloc(int);
#endif // !UTIL_H