From f9916482a7a13ab19c15a7b0ca46857cccff85a1 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 26 Nov 2014 15:50:58 +0000 Subject: fix base64 implementation namespace --- src/base64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/base64.c b/src/base64.c index b2e020b..c299955 100644 --- a/src/base64.c +++ b/src/base64.c @@ -33,7 +33,7 @@ static uint8_t encoding_table[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', static unsigned int mod_table[] = {0, 2, 1}; /* exported interface documented in nsutils/base64.h */ -nserror base64_encode_alloc(const uint8_t *input, +nserror nsu_base64_encode_alloc(const uint8_t *input, size_t input_length, uint8_t **output, size_t *output_length) @@ -76,7 +76,7 @@ nserror base64_encode_alloc(const uint8_t *input, /* exported interface documented in nsutils/base64.h */ -nserror base64_decode_alloc(const uint8_t *input, +nserror nsu_base64_decode_alloc(const uint8_t *input, size_t input_length, uint8_t **output, size_t *output_length) -- cgit v1.2.3