aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2021-09-17 08:45:25 +0200
committerlaforge <laforge@osmocom.org>2021-09-21 19:57:56 +0000
commitd075e3ae23ceae236a9cb4a3081856e0b38039e1 (patch)
tree6f16569b71799ba7eba78e1f134f2eac9d137f72 /include
parent292f9e7014056125f9abadd8df1b2850141bc6c0 (diff)
base64: reformat using Lindent to conform to our coding style
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/core/base64.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osmocom/core/base64.h b/include/osmocom/core/base64.h
index f73db0d8..86b862ea 100644
--- a/include/osmocom/core/base64.h
+++ b/include/osmocom/core/base64.h
@@ -45,8 +45,8 @@ extern "C" {
* \note Call this function with dlen = 0 to obtain the
* required buffer size in *olen
*/
-int osmo_base64_encode( unsigned char *dst, size_t dlen, size_t *olen,
- const unsigned char *src, size_t slen );
+int osmo_base64_encode(unsigned char *dst, size_t dlen, size_t *olen,
+ const unsigned char *src, size_t slen);
/**
* \brief Decode a base64-formatted buffer
@@ -65,8 +65,8 @@ int osmo_base64_encode( unsigned char *dst, size_t dlen, size_t *olen,
* \note Call this function with *dst = NULL or dlen = 0 to obtain
* the required buffer size in *olen
*/
-int osmo_base64_decode( unsigned char *dst, size_t dlen, size_t *olen,
- const unsigned char *src, size_t slen );
+int osmo_base64_decode(unsigned char *dst, size_t dlen, size_t *olen,
+ const unsigned char *src, size_t slen);
#ifdef __cplusplus
}