Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
77 lines (63 loc) · 2.1 KB

File metadata and controls

77 lines (63 loc) · 2.1 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef _XML_H
#define _XML_H
#include "logger.h"
Jun 22, 2011
Jun 22, 2011
26
/*! Defines attribute for XML elements */
27
28
29
30
31
32
33
34
35
36
typedef struct Attribute {
const char *attribute;
const char *value;
} Attribute;
/*!
* Opens XML document.
* Creates header and start tag for root element.
*
Jun 28, 2011
Jun 28, 2011
37
38
* Note: XML creation is not thread-safe!
*
39
* \param rootTag Root tag for the XML document
Jun 23, 2011
Jun 23, 2011
40
* \return The generated XML output
Jun 30, 2011
Jun 30, 2011
42
char *XMLOpenDocument(const char *rootTag, const char *xslStyle);
43
44
45
46
47
48
/*!
* Closes the XML-document.
* Creates end tag for root element and closes other open elements
* with correct nesting.
*/
Jun 23, 2011
Jun 23, 2011
49
char *XMLCloseDocument();
50
51
52
53
54
55
/*!
* Opens XML-element.
*
* \param tag Element to be opened
*/
Jun 23, 2011
Jun 23, 2011
56
char *XMLOpenElement(const char *tag);
57
58
59
60
61
62
/*!
* Add content to currently open element.
*
* \param content Content for the currently open element
*/
Jun 23, 2011
Jun 23, 2011
63
char *XMLAddContent(const char *content);
Jun 21, 2011
Jun 21, 2011
66
67
* Closes previously opened element until tag given as parameter is met.
* Enforces proper nesting by not allowing to close elements out-of-order.
68
69
*
* Closes all the opened elements until the given element/tag is found
Jun 21, 2011
Jun 21, 2011
70
* which will be the last tag to be closed
71
72
73
*
* \param tag Element to close
*/
Jun 23, 2011
Jun 23, 2011
74
char *XMLCloseElement(const char *tag);