[MOD] Continue XM{PP,L}werk.

I think I'll actually geninuely start my break as soon as I'm finished
with the encoder/decoder(given our current SAX lexer).
This commit is contained in:
LDA 2024-06-15 14:51:12 +02:00
commit a1a0d9c880
2 changed files with 73 additions and 6 deletions

17
src/XML/Parser.c Normal file
View file

@ -0,0 +1,17 @@
#include <XML.h>
/* TODO: The rest of all that. */
XMLElement *
XMLDecode(Stream *stream, bool autofree)
{
/* TODO: Use the existing SAX parser to decode everything */
return NULL;
}
void
XMLEncode(Stream *stream, XMLElement *element)
{
/* TODO: Write the entire XML element. This shouldn't be
* too hard. */
}