comparison src/tokenizer.h @ 9:d76f9ff42487

initial coding
author carl
date Sat, 03 Dec 2005 13:54:47 -0800
parents 276c4edc8521
children 6a2f26976898
comparison
equal deleted inserted replaced
8:5f4549fc60b9 9:d76f9ff42487
16 * along with this program; if not, write to the * 16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., * 17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/ 19 ***************************************************************************/
20 20
21 #ifndef tokenizer_include
22 #define tokenizer_include
23
24 #include <fstream>
25 #include <list>
26 #include <set>
27 #include <stdio.h>
28 #include <ctype.h>
29 21
30 22
31 using namespace std; 23 using namespace std;
32 24
33 struct ltstr { 25 struct ltstr {
70 void token_error(const char *fmt, const char *t, const char *h); 62 void token_error(const char *fmt, const char *t, const char *h);
71 void token_error(const char *want, const char *have); 63 void token_error(const char *want, const char *have);
72 void token_error(); 64 void token_error();
73 }; 65 };
74 66
75 #endif