mirror of
https://github.com/zoriya/xmlParser.git
synced 2025-12-19 00:55:11 +00:00
21 lines
266 B
C
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; |