comparison src/tokenizer.h @ 75:1142e46be550

start coding on new config syntax
author carl
date Wed, 13 Jul 2005 23:04:14 -0700
parents 2b369f7db7bf
children 99049fdc7320
comparison
equal deleted inserted replaced
74:b7449114ebb0 75:1142e46be550
44 char *cur_fn() {return filenames.front();}; 44 char *cur_fn() {return filenames.front();};
45 int cur_line() {return linenumbers.front();}; 45 int cur_line() {return linenumbers.front();};
46 void token_error(const char *err); 46 void token_error(const char *err);
47 void token_error(const char *fmt, int d, const char *s); 47 void token_error(const char *fmt, int d, const char *s);
48 void token_error(const char *fmt, const char *t, const char *h); 48 void token_error(const char *fmt, const char *t, const char *h);
49 void token_error(const char *token, const char *have); 49 void token_error(const char *want, const char *have);
50 void token_error(); 50 void token_error();
51 }; 51 };
52 52
53 #endif 53 #endif