diff options
author | Thomas White <taw@bitwiz.me.uk> | 2019-03-03 18:51:34 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.me.uk> | 2019-03-03 18:52:22 +0100 |
commit | acbec489df38e182a8e284095ccd7a0f1d84112e (patch) | |
tree | 1ad22572be6294ae761a2ecba7dea37c26f0b969 /libstorycode/narrative.h | |
parent | f2bfe89481217625f74224289947f7bcd839c55f (diff) |
Styled narrative rendering
Diffstat (limited to 'libstorycode/narrative.h')
-rw-r--r-- | libstorycode/narrative.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libstorycode/narrative.h b/libstorycode/narrative.h index ef757c0..e42b4f3 100644 --- a/libstorycode/narrative.h +++ b/libstorycode/narrative.h @@ -34,11 +34,10 @@ typedef struct _narrative Narrative; extern Narrative *narrative_new(void); extern void narrative_free(Narrative *n); -extern void narrative_add_prestitle(Narrative *n, const char *text); -extern void narrative_add_bp(Narrative *n, const char *text); +extern void narrative_add_prestitle(Narrative *n, char *text); +extern void narrative_add_bp(Narrative *n, char *text); extern void narrative_add_text(Narrative *n, char *text); extern void narrative_add_slide(Narrative *n, Slide *slide); - #endif /* NARRATIVE_H */ |