microScheme
parse.hpp
Go to the documentation of this file.
1 
9 #ifndef PARSE_HPP
10 #define PARSE_HPP
11 
12 #include "cons.hpp"
13 
14 using namespace std;
15 
24 Cell* parse(string sexpr);
25 
31 bool iswhitespace(char ch);
32 
33 #endif // PARSE_HPP
bool iswhitespace(char ch)
Check whether the character is whitespace.
Definition: parse.cpp:11
Cell * parse(string sexpr)
Recursively parse sexpr and build the parse tree.
Definition: parse.cpp:247