diff options
author | Martin Mares <mj@ucw.cz> | 2000-01-19 12:30:19 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-01-19 12:30:19 +0000 |
commit | 4b87e256eba51a8711c24fbae501ac7975b4ecd3 (patch) | |
tree | adab4bad12941ac757d7b0a586ab42b7d09b9817 /conf/conf.h | |
parent | f5ad9f87a389c1167a8468d0190bcf6d3cc33cf6 (diff) |
Split off general commands to cmds.c.
Added `show symbols' command which dumps whole symbol table together
with symbol types etc.
Diffstat (limited to 'conf/conf.h')
-rw-r--r-- | conf/conf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/conf.h b/conf/conf.h index 178cdb6e..5b80b0dd 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -94,6 +94,8 @@ struct symbol *cf_default_name(char *template, int *counter); void cf_define_symbol(struct symbol *symbol, int type, void *def); void cf_push_scope(struct symbol *); void cf_pop_scope(void); +struct symbol *cf_walk_symbols(struct config *cf, struct symbol *sym, int *pos); +char *cf_symbol_class_name(struct symbol *sym); /* Parser */ |