summaryrefslogtreecommitdiff
path: root/src/references.h
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-12-15 12:05:04 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-12-15 12:05:04 -0800
commitd6077ea037e23f6e2c0d83dda7b5d7106f48d1a3 (patch)
tree5bf5a03ba41d8570ecea1846ac6cd36c049bfc7a /src/references.h
parentab19f3cf3c247a5216ae7e7e78ef8c2eaac7ce0a (diff)
Re-added cmark_ prefix to strbuf and chunk.
Reverts 225d720.
Diffstat (limited to 'src/references.h')
-rw-r--r--src/references.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/references.h b/src/references.h
index 58658b6..69325bb 100644
--- a/src/references.h
+++ b/src/references.h
@@ -27,8 +27,8 @@ typedef struct cmark_reference_map cmark_reference_map;
cmark_reference_map *cmark_reference_map_new(void);
void cmark_reference_map_free(cmark_reference_map *map);
-cmark_reference* cmark_reference_lookup(cmark_reference_map *map, chunk *label);
-extern void cmark_reference_create(cmark_reference_map *map, chunk *label, chunk *url, chunk *title);
+cmark_reference* cmark_reference_lookup(cmark_reference_map *map, cmark_chunk *label);
+extern void cmark_reference_create(cmark_reference_map *map, cmark_chunk *label, cmark_chunk *url, cmark_chunk *title);
#ifdef __cplusplus
}