/* * BIRD -- Configuration Parser Top * * (c) 1998 Martin Mares * * Can be freely distributed and used under the terms of the GNU GPL. */ CF_HDR #include "nest/bird.h" #include "conf/conf.h" CF_DECLS %union { int i; ip_addr a; struct symbol *s; char *t; } %token END %token NUM %token IPA %token SYM %token TEXT CF_GRAMMAR config: conf_entries END { return 0; } ; conf_entries: /* EMPTY */ | conf_entries conf ';' ; CF_ADDTO(conf, /* EMPTY */) CF_CODE CF_END