summaryrefslogtreecommitdiff
path: root/src/include/taler_util.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-03-17 10:48:12 +0100
committerChristian Grothoff <christian@grothoff.org>2015-03-17 10:48:12 +0100
commit0119f629b3603e9635932b691fc31967ff085f7e (patch)
treef190d9584f6483773668653d6700eb99dfe2e9c2 /src/include/taler_util.h
parent293b4018d1270fa3edc9f893d6a80a78b5f091a7 (diff)
downloadexchange-0119f629b3603e9635932b691fc31967ff085f7e.tar.gz
exchange-0119f629b3603e9635932b691fc31967ff085f7e.tar.bz2
exchange-0119f629b3603e9635932b691fc31967ff085f7e.zip
move TALER_CONFIG_get_denom into util lib
Diffstat (limited to 'src/include/taler_util.h')
-rw-r--r--src/include/taler_util.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/include/taler_util.h b/src/include/taler_util.h
index 74feb037a..3569bd782 100644
--- a/src/include/taler_util.h
+++ b/src/include/taler_util.h
@@ -84,5 +84,19 @@ struct GNUNET_CONFIGURATION_Handle *
TALER_config_load (const char *base_dir);
+/**
+ * Obtain denomination amount from configuration file.
+ *
+ * @param section section of the configuration to access
+ * @param option option of the configuration to access
+ * @param denom[OUT] set to the amount found in configuration
+ * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
+ */
+int
+TALER_config_get_denom (struct GNUNET_CONFIGURATION_Handle *cfg,
+ const char *section,
+ const char *option,
+ struct TALER_Amount *denom);
+
#endif