2 * collectd - src/utils_parse_option.h
3 * Copyright (C) 2008 Florian Forster
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.
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.
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
19 * Florian octo Forster <octo at verplant.org>
22 #ifndef UTILS_PARSE_OPTION
23 #define UTILS_PARSE_OPTION 1
25 int parse_string (char **ret_buffer, char **ret_string);
26 int parse_option (char **ret_buffer, char **ret_key, char **ret_value);
28 int escape_string (char *buffer, size_t buffer_size);
30 #endif /* UTILS_PARSE_OPTION */
32 /* vim: set sw=2 ts=8 tw=78 et : */