X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=blobdiff_plain;f=conffile_internal.h;h=073ab26ba6d51b185ea757bff0d6e29fb6fd7bd0;hp=4c2cb36bc6714776ddb16e3f380be7a375329d5d;hb=8b9b7a6a06c3052930d00aeba6c2ae1e19bd6358;hpb=ff05a229397c75142725f45cad191ce4a00625ce diff --git a/conffile_internal.h b/conffile_internal.h index 4c2cb36..073ab26 100644 --- a/conffile_internal.h +++ b/conffile_internal.h @@ -4,9 +4,7 @@ #include #include "secnet.h" -extern FILE *yyin; - -typedef string_t atom_t; +typedef cstring_t atom_t; /* Parse tree for configuration file */ @@ -37,13 +35,13 @@ struct p_node { struct p_node *r; }; -extern int yylex(void); -extern string_t config_file; -extern uint32_t config_lineno; +extern cstring_t config_file; +extern int config_lineno; +extern int yynerrs; /* Keys in dictionaries are 'atoms', which are constructed from strings using this call. Atoms may be compared using '=='. */ -extern atom_t intern(string_t string); +extern atom_t intern(cstring_t string); extern struct p_node *parse_conffile(FILE *conffile);