Skip to content

Commit

Permalink
chore: added base64 module grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
charliekush committed Nov 15, 2024
1 parent 91b5bb9 commit dd573d2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/cellular/encoding/base64.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -62,4 +69,5 @@ int urlsafe_b64_decode(const char *in, size_t ilen, uint8_t *out, size_t *olen);
}
#endif

#endif // B64_H_
#endif // B64_H_
/** @} */ // end of Base64Codec

0 comments on commit dd573d2

Please sign in to comment.