1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

Merge pull request #6297 from thomaseichinger/pr/fix_doc_base64

sys/base64: fix a documentation confusion
This commit is contained in:
BytesGalore 2017-01-08 10:15:54 +01:00 committed by GitHub
commit 1c8ea7eab2

View File

@ -30,7 +30,7 @@ extern "C" {
#define BASE64_ERROR_BUFFER_OUT (-1) /**< error value for invalid output buffer pointer */
#define BASE64_ERROR_BUFFER_OUT_SIZE (-2) /**< error value for invalid output buffer size */
#define BASE64_ERROR_DATA_IN (-3) /**< error value for invalid input buffer */
#define BASE64_ERROR_DATA_IN_SIZE (-4) /**< error value for invalid output buffer size */
#define BASE64_ERROR_DATA_IN_SIZE (-4) /**< error value for invalid input buffer size */
/**
* @brief Encodes a given datum to base64 and save the result to the given destination.