X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fconfigfile.h;h=a73def21760f8efbf0a642002c7f8ee5a45aec1d;hb=3b4201d2235c25ed21174c41c526c9b7894de539;hp=74d074ed2fb746d7b4fe9596e7589532da966799;hpb=7936f094388707ee066b2e9f3fc75659e1715181;p=collectd.git diff --git a/src/configfile.h b/src/configfile.h index 74d074ed..a73def21 100644 --- a/src/configfile.h +++ b/src/configfile.h @@ -91,6 +91,10 @@ const char *global_option_get (const char *option); * success. */ int cf_util_get_string (const oconfig_item_t *ci, char **ret_string); +/* Assures the config option is a boolean and assignes it to `ret_bool'. + * Otherwise, `ret_bool' is not changed and non-zero is returned. */ +int cf_util_get_boolean (const oconfig_item_t *ci, _Bool *ret_bool); + /* Assures that the config option is a string. The string is then converted to * a port number using `service_name_to_port_number' and returned. Returns the * port number in the range [1-65535] or less than zero upon failure. */