]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/xml.h
tree-wide: drop license boilerplate
[thirdparty/systemd.git] / src / basic / xml.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2013 Lennart Poettering
8 ***/
9
10 enum {
11 XML_END,
12 XML_TEXT,
13 XML_TAG_OPEN,
14 XML_TAG_CLOSE,
15 XML_TAG_CLOSE_EMPTY,
16 XML_ATTRIBUTE_NAME,
17 XML_ATTRIBUTE_VALUE,
18 };
19
20 int xml_tokenize(const char **p, char **name, void **state, unsigned *line);