diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-05-01 18:33:16 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-05-01 18:33:21 +0200 |
| commit | 3e00c224007db19cdc7869435967c5decea570a5 (patch) | |
| tree | 2e08f1a91e5930c1cc6509707581c83b8508c128 /include | |
| parent | a9e8d0e9c929bec830b086e473ef1362e1f873d9 (diff) | |
feat(lib): introduce document notion in C ABI
Diffstat (limited to 'include')
| -rw-r--r-- | include/typdown.h | 5 |
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 *); |
