room101/DEFS.HPP

28 lines
487 B
Text
Raw Permalink Normal View History

#ifndef __DEFS_H
#define __DEFS_H
#include <iso646.h>
#include <math.h>
#include <time.h>
#include <ctype.h>
#include <stdio.h>
#include <float.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <memory.h>
#include <assert.h>
#undef TRUE
#define TRUE (1)
#undef FALSE
#define FALSE (0)
#define Trace() {fprintf(stderr, "\nFILE %s LINE %d\n", __FILE__, __LINE__); fflush(stderr);}
typedef char String[256];
#endif