X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fxml.h;fp=src%2Fshared%2Fxml.h;h=18ebbd9e44ae623a540fe8c4652c9ec56fa72fbe;hb=08bcebf36eb85f5e75b968de8c648e6614cc534b;hp=0000000000000000000000000000000000000000;hpb=79ccff06c19c0ee74b9744928bc40f2ce658fde2;p=elogind.git diff --git a/src/shared/xml.h b/src/shared/xml.h new file mode 100644 index 000000000..18ebbd9e4 --- /dev/null +++ b/src/shared/xml.h @@ -0,0 +1,34 @@ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ + +#pragma once + +/*** + This file is part of systemd. + + Copyright 2013 Lennart Poettering + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + systemd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with systemd; If not, see . +***/ + +enum { + XML_END, + XML_TEXT, + XML_TAG_OPEN, + XML_TAG_CLOSE, + XML_TAG_CLOSE_EMPTY, + XML_ATTRIBUTE_NAME, + XML_ATTRIBUTE_VALUE +}; + +int xml_tokenize(const char **p, char **name, void **state);