summaryrefslogtreecommitdiff
path: root/cmarkdown.c
diff options
context:
space:
mode:
authorgottox@rootkit.lan <gottox@rootkit.lan>2007-12-10 13:46:36 +0100
committergottox@rootkit.lan <gottox@rootkit.lan>2007-12-10 13:46:36 +0100
commita8b7fd1ea2e17998bcfe5a39513d9994c56e5b80 (patch)
treefa404c1437bad960c24d1b7f1516e47ba360a6f6 /cmarkdown.c
parent597bf0e64eb5ba07175e3b394ab73c4c2a948882 (diff)
Adding dolist which I forgot in last commit
Diffstat (limited to 'cmarkdown.c')
-rw-r--r--cmarkdown.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmarkdown.c b/cmarkdown.c
index 0104d38..830c96f 100644
--- a/cmarkdown.c
+++ b/cmarkdown.c
@@ -26,6 +26,8 @@ unsigned int dolineprefix(const char *begin, const char *end);
/* Parser for line prefix tags */
unsigned int dolink(const char *begin, const char *end);
/* Parser for links and images */
+unsigned int dolist(const char *begin, const char *end);
+ /* Parser for lists */
unsigned int doreplace(const char *begin, const char *end);
/* Parser for simple replaces */
unsigned int doshortlink(const char *begin, const char *end);
@@ -174,6 +176,11 @@ dolink(const char *begin, const char *end) {
}
unsigned int
+dolist(const char *begin, const char *end) {
+ return 0;
+}
+
+unsigned int
doreplace(const char *begin, const char *end) {
unsigned int i, l;