ht's Scheme Interpreter  1.0
a simplified scheme interpreter implementation
arch.hpp
Go to the documentation of this file.
1 #ifndef __SCHEME_TYPES_ARCH
2 #define __SCHEME_TYPES_ARCH
3 
4 #include <cstddef>
5 #include <string>
6 #include <stdexcept>
7 
8 union ExtraInfo;
9 typedef bool (*CheckerFuncType) (const std::string&);
10 typedef ExtraInfo (*ExtraInfoFunc) (const std::string&);
11 
12 ExtraInfo getnullExtraInfo(const std::string s);
13 
14 #endif
ExtraInfo getnullExtraInfo(const std::string s)
bool(* CheckerFuncType)(const std::string &)
Definition: arch.hpp:9