mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 21:35:10 +00:00
[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:
parent
0815834d7d
commit
a1a0d9c880
2 changed files with 73 additions and 6 deletions
17
src/XML/Parser.c
Normal file
17
src/XML/Parser.c
Normal 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. */
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue