aboutsummaryrefslogtreecommitdiff
path: root/src/sc_parse.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2015-08-16 17:50:07 +0200
committerThomas White <taw@bitwiz.org.uk>2015-08-16 17:50:07 +0200
commit4534e5af52a226327590b3c19a010a460212427a (patch)
treec4749cd036cdf0e1fb7d2139836b6934b5d2c239 /src/sc_parse.h
parenta54c8fae031aa34b6286e8f08fc4861681d24200 (diff)
Remove sc_block_frame() crap
Diffstat (limited to 'src/sc_parse.h')
-rw-r--r--src/sc_parse.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/sc_parse.h b/src/sc_parse.h
index bf1960d..b1b59dd 100644
--- a/src/sc_parse.h
+++ b/src/sc_parse.h
@@ -39,13 +39,10 @@ extern SCBlock *sc_block_copy(const SCBlock *bl);
extern SCBlock *sc_block_next(const SCBlock *bl);
extern SCBlock *sc_block_child(const SCBlock *bl);
-extern SCBlock *sc_block_macro_child(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 sc_block_set_macro_child(SCBlock *bl, SCBlock *mchild);
-
extern SCBlock *sc_block_append(SCBlock *bl,
char *name, char *opt, char *contents,
SCBlock **blfp);
@@ -61,9 +58,6 @@ extern SCBlock *sc_block_insert_after(SCBlock *afterme,
extern void sc_block_delete(SCBlock *top, SCBlock *deleteme);
-extern struct frame *sc_block_frame(const SCBlock *bl);
-extern void sc_block_set_frame(SCBlock *bl, struct frame *fr);
-
extern SCBlock *find_last_child(SCBlock *bl);