summaryrefslogtreecommitdiff
path: root/read.h
blob: 2da946f91aa088cd6737d55682d686105da130b4 (plain)
1
2
3
4
5
6
7
8
9
#ifndef _read_h
#define _read_h

#include "state.h"
#include "val.h"
Val read_expr(State *S, char *str);
ObjArr *read_exprs(State *S, char *str);

#endif