exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 1cf58e8ff8efc82f0e8bf1a058047d48b86e060e
parent 4e79967f9ba980b64e89a453efbb9ed4bfa4cc37
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 10 May 2023 00:02:52 +0200

-fix warning

Diffstat:
Msrc/include/taler_util.h | 10++++++++++
Msrc/util/util.c | 6------
2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/include/taler_util.h b/src/include/taler_util.h @@ -230,6 +230,16 @@ TALER_OS_init (void); /** + * Re-encode string at @a inp to match RFC 8785 (section 3.2.2.2). + * + * @param[in,out] inp pointer to string to re-encode + * @return number of bytes in resulting @a inp + */ +size_t +TALER_rfc8785encode (char **inp); + + +/** * URL-encode a string according to rfc3986. * * @param s string to encode diff --git a/src/util/util.c b/src/util/util.c @@ -258,12 +258,6 @@ lowdump (struct GNUNET_Buffer *buf, } -/** - * Re-encode string at @a inp to match RFC 8785 (section 3.2.2.2). - * - * @param[in,out] inp pointer to string to re-encode - * @return number of bytes in resulting @a inp - */ size_t TALER_rfc8785encode (char **inp) {