aboutsummaryrefslogtreecommitdiff
path: root/include/typdown.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/typdown.h')
-rw-r--r--include/typdown.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/typdown.h b/include/typdown.h
index abf395d..0e954d4 100644
--- a/include/typdown.h
+++ b/include/typdown.h
@@ -4,7 +4,7 @@
struct typdown_Error {
uint8_t code;
- struct {size_t beg; size_t end;} location;
+ struct {size_t beg; size_t end; size_t line;} location;
};
struct typdown_Document {
@@ -17,4 +17,4 @@ char * typdown_getErrorString(uint8_t);
struct typdown_Document typdown_parse(char *);
void typdown_free(struct typdown_Document);
-char * typdown_renderHTML(struct typdown_Document, uint8_t *);
+char * typdown_renderHTML(void *, uint8_t *);