From dd573d29faeabe2ddb151a965aa6742a8a0cfc4a Mon Sep 17 00:00:00 2001 From: Charlie Kushelevsky Date: Fri, 15 Nov 2024 08:16:55 -0800 Subject: [PATCH] chore: added base64 module grouping --- src/cellular/encoding/base64.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/cellular/encoding/base64.h b/src/cellular/encoding/base64.h index 49bfe260..2c0e31b0 100644 --- a/src/cellular/encoding/base64.h +++ b/src/cellular/encoding/base64.h @@ -5,6 +5,13 @@ * Copyright (C) 2010 Creytiv.com */ +/** + * @defgroup Base64Codec Base64 Codec + * @brief Functions for Base64 and URL-safe Base64 encoding and decoding. + * + * @{ + */ + #ifndef B64_H_ #define B64_H_ (1) @@ -62,4 +69,5 @@ int urlsafe_b64_decode(const char *in, size_t ilen, uint8_t *out, size_t *olen); } #endif -#endif // B64_H_ \ No newline at end of file +#endif // B64_H_ +/** @} */ // end of Base64Codec \ No newline at end of file