1dfb3ae949e82573b951ae43e1ac914d1fa453ac
[collectd.git] / src / utils_parse_option.h
1 /**
2  * collectd - src/utils_parse_option.h
3  * Copyright (C) 2008  Florian Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Author:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #ifndef UTILS_PARSE_OPTION
23 #define UTILS_PARSE_OPTION 1
24
25 int parse_string (char **ret_buffer, char **ret_string);
26 int parse_option (char **ret_buffer, char **ret_key, char **ret_value);
27
28 int escape_string (char *buffer, size_t buffer_size);
29
30 #endif /* UTILS_PARSE_OPTION */
31
32 /* vim: set sw=2 ts=8 tw=78 et : */