summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 62b59f5)
raw | patch | inline | side by side (parent: 62b59f5)
author | Florian Forster <octo@noris.net> | |
Wed, 10 Mar 2010 17:37:32 +0000 (18:37 +0100) | ||
committer | Florian Forster <octo@noris.net> | |
Wed, 10 Mar 2010 17:37:32 +0000 (18:37 +0100) |
Helper function to parse an "int".
src/configfile.c | patch | blob | history | |
src/configfile.h | patch | blob | history |
diff --git a/src/configfile.c b/src/configfile.c
index 1bd02a82d945b418ee32e3c08fd58b29f5857717..0eeb86e662fbd9e5a0c65c8dec101b7abf30af1f 100644 (file)
--- a/src/configfile.c
+++ b/src/configfile.c
@@ -980,6 +980,24 @@ int cf_util_get_string_buffer (const oconfig_item_t *ci, char *buffer, /* {{{ */
return (0);
} /* }}} int cf_util_get_string_buffer */
+/* Assures the config option is a number and returns it as an int. */
+int cf_util_get_int (const oconfig_item_t *ci, int *ret_value) /* {{{ */
+{
+ if ((ci == NULL) || (ret_value == NULL))
+ return (EINVAL);
+
+ if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
+ {
+ ERROR ("cf_util_get_int: The %s option requires "
+ "exactly one numeric argument.", ci->key);
+ return (-1);
+ }
+
+ *ret_value = (int) ci->values[0].value.number;
+
+ return (0);
+} /* }}} int cf_util_get_int */
+
int cf_util_get_boolean (const oconfig_item_t *ci, _Bool *ret_bool) /* {{{ */
{
if ((ci == NULL) || (ret_bool == NULL))
diff --git a/src/configfile.h b/src/configfile.h
index c1c5e2933ec00b04d8ca744618aa7aa351be2281..432e09f5ba73f0663669dfe0f6bae7f65e154f48 100644 (file)
--- a/src/configfile.h
+++ b/src/configfile.h
int cf_util_get_string_buffer (const oconfig_item_t *ci, char *buffer,
size_t buffer_size);
+/* Assures the config option is a number and returns it as an int. */
+int cf_util_get_int (const oconfig_item_t *ci, int *ret_value);
+
/* 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);