From bc8f6e81a4d737625e05e5e268d0d682489873d5 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 28 Jan 2015 20:31:28 +0100 Subject: move data_to_string_alloc to GNUnet --- src/util/util.c | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'src/util/util.c') diff --git a/src/util/util.c b/src/util/util.c index de085d088..b09f4dbdd 100644 --- a/src/util/util.c +++ b/src/util/util.c @@ -28,36 +28,6 @@ #include #include -/** - * Return the base32crockford encoding of the given buffer. - * - * The returned string will be freshly allocated, and must be free'd - * with GNUNET_free(). - * - * @param buffer with data - * @param size size of the buffer - * @return freshly allocated, null-terminated string - */ -char * -TALER_data_to_string_alloc (const void *buf, size_t size) -{ - char *str_buf; - size_t len = size * 8; - char *end; - - if (len % 5 > 0) - len += 5 - len % 5; - len /= 5; - str_buf = GNUNET_malloc (len + 1); - end = GNUNET_STRINGS_data_to_string (buf, size, str_buf, len); - if (NULL == end) - { - GNUNET_free (str_buf); - return NULL; - } - *end = '\0'; - return str_buf; -} /** -- cgit v1.2.3