diff options
author | bpc2003 <wpesfriendnva@gmail.com> | 2025-05-18 18:11:14 -0400 |
---|---|---|
committer | bpc2003 <wpesfriendnva@gmail.com> | 2025-05-18 18:11:14 -0400 |
commit | 0575736fd33a60796ce29c0241da2492363fe24d (patch) | |
tree | e4cf4131f1784ac865daeec516bd544875416aea /src/include/xml/xml.h | |
parent | e99a79f1499b6cfb60007587ebeda645c32d38dc (diff) |
Added attribute parsing to decoder
Diffstat (limited to 'src/include/xml/xml.h')
-rw-r--r-- | src/include/xml/xml.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/xml/xml.h b/src/include/xml/xml.h index d64c61b..ff64796 100644 --- a/src/include/xml/xml.h +++ b/src/include/xml/xml.h @@ -25,5 +25,7 @@ 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); +/* freemap: frees a map and its children */ +void freemap(map_t *map); #endif |