Commit 385e0e53 authored by Daniel Burke's avatar Daniel Burke

ttxml: Rplaced ratchet buffer with regular buffer, 20x speed increase

parent b679512e
This diff is collapsed.
/* Licensed under GPL - see LICENSE file for details */
typedef struct XmlNode { typedef struct XmlNode {
char * name; char * name;
char ** attrib; char ** attrib;
...@@ -8,7 +8,7 @@ typedef struct XmlNode { ...@@ -8,7 +8,7 @@ typedef struct XmlNode {
} XmlNode; } XmlNode;
XmlNode* xml_new(char * name, char * attrib); XmlNode* xml_new(char * name);
XmlNode* xml_load(const char * filename); XmlNode* xml_load(const char * filename);
void xml_free(XmlNode *target); void xml_free(XmlNode *target);
char* xml_attr(XmlNode *x, const char *name); char* xml_attr(XmlNode *x, const char *name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment