forked from fletcher/MultiMarkdown-4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtf.h
17 lines (14 loc) · 725 Bytes
/
rtf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef RTF_PARSER_H
#define RTF_PARSER_H
#include "parser.h"
#include "writer.h"
void begin_rtf_output(GString *out, node* list, scratch_pad *scratch);
void end_rtf_output(GString *out, node* list, scratch_pad *scratch);
void print_rtf_node_tree(GString *out, node *list, scratch_pad *scratch);
void print_rtf_node(GString *out, node *n, scratch_pad *scratch);
void print_rtf_localized_typography(GString *out, int character, scratch_pad *scratch);
void print_rtf_string(GString *out, char *str, scratch_pad *scratch);
void print_rtf_code_string(GString *out, char *str, scratch_pad *scratch);
void print_rtf_endnotes(GString *out, scratch_pad *scratch);
void pad_rtf(GString *out, int pad, scratch_pad *scratch);
#endif