mirror of
https://github.com/zoriya/xmlParser.git
synced 2025-12-06 02:56:10 +00:00
20 lines
563 B
C
20 lines
563 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** xmlParser
|
|
** File description:
|
|
** xml_internal
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
void xml_fillclosing_br(char *buffer, const char *name);
|
|
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);
|
|
dictionary *property_add(dictionary *list, dictionary *property);
|
|
node *xml_parsenode(char **str);
|
|
int get_int_size(int n); |