gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] 67/152: add TALER_yna_to_string()


From: gnunet
Subject: [taler-exchange] 67/152: add TALER_yna_to_string()
Date: Sun, 05 Jul 2020 20:47:03 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

commit 6b6814a205077f4c77f8dd42012fccdd12c0df5d
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Jun 14 15:15:53 2020 +0200

    add TALER_yna_to_string()
---
 src/include/taler_util.h | 11 +++++++++++
 src/util/yna.c           | 22 ++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/src/include/taler_util.h b/src/include/taler_util.h
index 07b78a43..22d7f7f2 100644
--- a/src/include/taler_util.h
+++ b/src/include/taler_util.h
@@ -335,4 +335,15 @@ TALER_arg_to_yna (struct MHD_Connection *connection,
                   enum TALER_EXCHANGE_YesNoAll default_val,
                   enum TALER_EXCHANGE_YesNoAll *yna);
 
+
+/**
+ * Convert YNA value to a string.
+ *
+ * @param yna value to convert
+ * @return string representation ("yes"/"no"/"all").
+ */
+const char *
+TALER_yna_to_string (enum TALER_EXCHANGE_YesNoAll yna);
+
+
 #endif
diff --git a/src/util/yna.c b/src/util/yna.c
index 6907df67..fa7cf934 100644
--- a/src/util/yna.c
+++ b/src/util/yna.c
@@ -64,3 +64,25 @@ TALER_arg_to_yna (struct MHD_Connection *connection,
   }
   return false;
 }
+
+
+/**
+ * Convert YNA value to a string.
+ *
+ * @param yna value to convert
+ * @return string representation ("yes"/"no"/"all").
+ */
+const char *
+TALER_yna_to_string (enum TALER_EXCHANGE_YesNoAll yna)
+{
+  switch (yna)
+  {
+  case TALER_EXCHANGE_YNA_YES:
+    return "yes";
+  case TALER_EXCHANGE_YNA_NO:
+    return "no";
+  case TALER_EXCHANGE_YNA_ALL:
+    return "all";
+  }
+  GNUNET_assert (0);
+}

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]