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

Latest commit

 

History

History
76 lines (63 loc) · 2.17 KB

File metadata and controls

76 lines (63 loc) · 2.17 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
/*! Defines attribute for XML elements */
typedef struct Attribute {
May 18, 2013
May 18, 2013
26
27
const char *attribute;
const char *value;
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
} Attribute;
/*!
* Opens XML document.
* Creates header and start tag for root element.
*
* Note: XML creation is not thread-safe!
*
* \param rootTag Root tag for the XML document
* \param xslStyle Name of the style sheet file. (empty string if no style is used)
* \return The generated XML output
*/
char *XMLOpenDocument(const char *rootTag, const char *xslStyle);
/*!
* Closes the XML-document.
* Creates end tag for root element and closes other open elements
* with correct nesting.
*/
char *XMLCloseDocument();
/*!
* Opens XML-element.
*
* \param tag Element to be opened
*/
char *XMLOpenElement(const char *tag);
/*!
* Add content to currently open element.
*
* \param content Content for the currently open element
*/
char *XMLAddContent(const char *content);
/*!
* Closes previously opened element until tag given as parameter is met.
* Enforces proper nesting by not allowing to close elements out-of-order.
*
* Closes all the opened elements until the given element/tag is found
* which will be the last tag to be closed
*
* \param tag Element to close
*/
char *XMLCloseElement(const char *tag);
#endif