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