diff options
author | bpc2003 <wpesfriendnva@gmail.com> | 2025-05-09 17:44:20 -0400 |
---|---|---|
committer | bpc2003 <wpesfriendnva@gmail.com> | 2025-05-09 17:44:20 -0400 |
commit | 5bb744d350a68ff75e5af32b9070983b7e0aa716 (patch) | |
tree | 17b8252d8878bd2fbdeb2fa8bab791f1f15f7591 /src/include/xml/xml.h | |
parent | 62fd6c58cb620c63316cb3863195e8bab5da5b84 (diff) |
Have recursive decoder mostly working, now need to find way to store payloads safely
Diffstat (limited to 'src/include/xml/xml.h')
-rw-r--r-- | src/include/xml/xml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/xml/xml.h b/src/include/xml/xml.h index 4ee80b7..d64c61b 100644 --- a/src/include/xml/xml.h +++ b/src/include/xml/xml.h @@ -20,7 +20,7 @@ typedef struct { /* decode: decodes the provided xml statement into a map_t */ -map_t *decode(char *xml, int *len); +map_t *decode(char *xml, int *pos, int *len); /* encode: encodes the provided map_t into a xml statement */ char *encode(map_t *map, int len); |