Coding style

This commit is contained in:
Tristan Roux
2019-12-09 10:41:56 +01:00
parent a2f4eec5fc
commit 235c9b5b34
7 changed files with 30 additions and 22 deletions
+1 -2
View File
@@ -28,6 +28,5 @@ struct node
};
node *xmlparse(char *path);
dictionary *property_add(dictionary *list, dictionary *property);
node *xml_parsenode(char **nodestr);
char *xml_getproperty(node *n, char *key);
void xml_destroy(node *n);
+3 -1
View File
@@ -14,4 +14,6 @@ char *xml_getname(char **nodestr, bool *has_parameters, bool *has_childs);
dictionary *xml_getproperties(char **nodestr, bool *can_have_child);
char *trimstr(char *str);
int xml_getstringdata(node *n, char **nodestr);
int xml_checkclosing(node *n, char **nodestr);
int xml_checkclosing(node *n, char **nodestr);
dictionary *property_add(dictionary *list, dictionary *property);
node *xml_parsenode(char **nodestr);