aboutsummaryrefslogtreecommitdiff
path: root/src/sc_parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_parse.h')
-rw-r--r--src/sc_parse.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sc_parse.h b/src/sc_parse.h
index 23bba89..ac4ce35 100644
--- a/src/sc_parse.h
+++ b/src/sc_parse.h
@@ -30,8 +30,14 @@
typedef struct _scblock SCBlock;
extern SCBlock *sc_parse(const char *sc);
+
extern void sc_block_free(SCBlock *bl);
-extern void show_sc_blocks(SCBlock *bl);
+extern SCBlock *sc_block_next(const SCBlock *bl);
+extern const char *sc_block_name(const SCBlock *bl);
+extern const char *sc_block_options(const SCBlock *bl);
+extern const char *sc_block_contents(const SCBlock *bl);
+
+extern void show_sc_blocks(const SCBlock *bl);
#endif /* SC_PARSE_H */