Files
xmlParser/include/xml.h
Tristan Roux 8aaeea8ee4 Initial commit
2019-12-05 18:00:46 +01:00

21 lines
266 B
C

/*
** EPITECH PROJECT, 2019
** MUL_my_runner_2019
** File description:
** xml
*/
#pragma once
typedef struct dictionary
{
char *property;
char *value;
} dictionary;
typedef struct node
{
char *name;
dictionary *properties;
node *child;
} node;