aboutsummaryrefslogtreecommitdiff
path: root/interpreter/code.h
blob: 4c850a26f98447818ade82b28a15d1b865c81011 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _H_CODE
#define _H_CODE

#include "syntax.h"

typedef expression* (Code_0) ();
typedef expression* (Code_1) (expression*);
typedef expression* (Code_2) (expression*, expression*);

unsigned char code_find(char* name, void** function);

#endif