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