From 5bb744d350a68ff75e5af32b9070983b7e0aa716 Mon Sep 17 00:00:00 2001 From: bpc2003 Date: Fri, 9 May 2025 17:44:20 -0400 Subject: Have recursive decoder mostly working, now need to find way to store payloads safely --- src/include/xml/xml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/xml/xml.h') 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); -- cgit v1.2.3