aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-05-01 18:33:16 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-05-01 18:33:21 +0200
commit3e00c224007db19cdc7869435967c5decea570a5 (patch)
tree2e08f1a91e5930c1cc6509707581c83b8508c128 /include
parenta9e8d0e9c929bec830b086e473ef1362e1f873d9 (diff)
feat(lib): introduce document notion in C ABI
Diffstat (limited to 'include')
-rw-r--r--include/typdown.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/typdown.h b/include/typdown.h
index 51821a0..8de37d8 100644
--- a/include/typdown.h
+++ b/include/typdown.h
@@ -2,4 +2,7 @@
#include <stdint.h>
char * typdown_getErrorString(uint8_t);
-char * typdown_parse(char *, uint8_t *);
+
+void * typdown_parse(char *, uint8_t *);
+void typdown_free(void *);
+char * typdown_renderHTML(void *, uint8_t *);