/* File: basics.h
 * Author: James Mayfield
 *
 * This file contains a few very basic definitions
 * needed to support the 202 libraries.
 */

#ifndef _CMSC_202_BASICS_
#define _CMSC_202_BASICS_

#ifndef TRUE
#define TRUE  1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0
#endif

typedef int BOOL;

#endif
