stage0/stage2/High_level_prototypes/lisp.h

39 lines
615 B
C
Raw Normal View History

2016-12-17 01:59:57 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
enum otype
{
INT = 1,
SYM = (1 << 1),
CONS = (1 << 2),
PROC = (1 << 3),
PRIMOP = (1 << 4),
};
typedef struct cell* (*Operation)(struct cell *);
typedef struct cell
{
enum otype type;
union
{
struct cell* car;
int value;
char* string;
Operation function;
};
struct cell* cdr;
struct cell* env;
} cell;
#define MAXLEN 256
struct cell* make_cons(struct cell* a, struct cell* b);
/* Global objects */
struct cell *all_symbols, *top_env, *nil, *tee, *quote, *s_if, *s_lambda, *s_define, *s_setb;