Parse XML

This commit is contained in:
James Booth
2015-05-12 21:24:13 +01:00
parent e2af2e4592
commit 43f4080339
6 changed files with 127 additions and 11 deletions

9
src/server/parser.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef __H_PARSER
#define __H_PARSER
void parser_init(void);
int parser_feed(char *chunk, int len);
void parser_close(void);
void parser_reset(void);
#endif