diff options
author | Thomas White <taw@bitwiz.org.uk> | 2015-02-22 16:12:20 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2015-02-22 16:12:20 +0100 |
commit | 24e5163fd377e860a62595d01b187be8df1d7a7d (patch) | |
tree | 14ee72c70fc6a7c7f4ab8c243f78d1b390c6b4b2 /src/sc_parse.h | |
parent | c12f041d4e151cf0bbbb4e2c92c4bbc45e5fa67a (diff) |
WIP on slide adding
Diffstat (limited to 'src/sc_parse.h')
-rw-r--r-- | src/sc_parse.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sc_parse.h b/src/sc_parse.h index b86293c..373f2cd 100644 --- a/src/sc_parse.h +++ b/src/sc_parse.h @@ -1,7 +1,7 @@ /* * sc_parse.h * - * Copyright © 2013-2014 Thomas White <taw@bitwiz.org.uk> + * Copyright © 2013-2015 Thomas White <taw@bitwiz.org.uk> * * This file is part of Colloquium. * @@ -68,6 +68,7 @@ extern SCBlock *find_last_child(SCBlock *bl); extern void sc_block_set_options(SCBlock *bl, char *opt); extern void sc_block_set_contents(SCBlock *bl, char *con); extern void sc_insert_text(SCBlock *b1, int o1, const char *t); +extern void sc_insert_block(SCBlock *b1, int o1, SCBlock *ins); extern void sc_delete_text(SCBlock *b1, int o1, SCBlock *b2, int o2); extern void show_sc_blocks(const SCBlock *bl); |