18 #ifndef SEXPR_PARSER_H_ 19 #define SEXPR_PARSER_H_ 21 #include "sexpr/sexpr.h" 33 SEXPR* Parse(
const std::string &aString );
34 SEXPR* ParseFromFile(
const std::string &aFilename );
35 static std::string GetFileContents(
const std::string &aFilename );
38 SEXPR* parseString(
const std::string& aString, std::string::const_iterator& it );
39 static const std::string whitespaceCharacters;
Definition: isexprable.h:23
Definition: sexpr_parser.h:28