mirror of
https://github.com/zoriya/xmlParser.git
synced 2025-12-19 00:55:11 +00:00
Initial commit
This commit is contained in:
21
include/xml.h
Normal file
21
include/xml.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
** 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;
|
||||
Reference in New Issue
Block a user