4 * @brief lexical parser for text-based configuration files
9 * Copyright (C) 2001-2006 Andreas Steffen, Zuercher Hochschule Winterthur
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
25 * @brief Eats whitespace
27 bool eat_whitespace(chunk_t
*src
);
30 * @brief Compare null-terminated pattern with chunk
32 bool match(const char *pattern
, const chunk_t
*ch
);
35 * @brief Extracts a token ending with a given termination symbol
37 bool extract_token(chunk_t
*token
, const char termination
, chunk_t
*src
);
40 * @brief Fetches a new text line terminated by \n or \r\n
42 bool fetchline(chunk_t
*src
, chunk_t
*line
);
45 * @brief Extracts a value that might be single or double quoted
47 err_t
extract_value(chunk_t
*value
, chunk_t
*line
);
50 * @brief extracts a name: value pair from a text line
52 err_t
extract_name_value(chunk_t
*name
, chunk_t
*value
, chunk_t
*line
);
55 * @brief extracts a parameter: value from a text line
57 err_t
extract_parameter_value(chunk_t
*name
, chunk_t
*value
, chunk_t
*line
);