From 33e92ff899ca76809d8e826bd885a746264fa4e8 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 26 Nov 2014 17:15:07 +0000 Subject: Fix error enum to not conflict and add monotonic time implementation --- include/nsutils/base64.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/nsutils/base64.h') diff --git a/include/nsutils/base64.h b/include/nsutils/base64.h index 2bb10e4..672b69c 100644 --- a/include/nsutils/base64.h +++ b/include/nsutils/base64.h @@ -28,10 +28,10 @@ * \param output_length The length of data placed in \a output * \return NSERROR_OK on success and \a output updated else error code. */ -nserror nsu_base64_encode_alloc(const uint8_t *input, - size_t input_length, - uint8_t **output, - size_t *output_length); +nsuerror nsu_base64_encode_alloc(const uint8_t *input, + size_t input_length, + uint8_t **output, + size_t *output_length); /** * Base 64 decode data. @@ -44,9 +44,9 @@ nserror nsu_base64_encode_alloc(const uint8_t *input, * \param output_length The length of data placed in \a output * \return NSERROR_OK on success and \a output updated else error code. */ -nserror nsu_base64_decode_alloc(const uint8_t *input, - size_t input_length, - uint8_t **output, - size_t *output_length); +nsuerror nsu_base64_decode_alloc(const uint8_t *input, + size_t input_length, + uint8_t **output, + size_t *output_length); #endif -- cgit v1.2.3