aboutsummaryrefslogtreecommitdiffstats
path: root/libar2_decode_base64.3
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-05-16 22:08:24 +0200
committerMattias Andrée <m@maandree.se>2026-05-16 22:08:24 +0200
commit9ec46ba87daa4ede804b1cb0abd91b85caf6f910 (patch)
tree6de728a336ed007b408f4d5f75a84551ac43cdbe /libar2_decode_base64.3
parentAdd sanitizer options to config.mk (diff)
downloadlibar2-9ec46ba87daa4ede804b1cb0abd91b85caf6f910.tar.gz
libar2-9ec46ba87daa4ede804b1cb0abd91b85caf6f910.tar.bz2
libar2-9ec46ba87daa4ede804b1cb0abd91b85caf6f910.tar.xz
Man page fixes
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r--libar2_decode_base64.36
1 files changed, 3 insertions, 3 deletions
diff --git a/libar2_decode_base64.3 b/libar2_decode_base64.3
index 03cd8b8..159a0ed 100644
--- a/libar2_decode_base64.3
+++ b/libar2_decode_base64.3
@@ -15,7 +15,7 @@ Link with
.SH DESCRIPTION
The
.BR libar2_decode_base64 ()
-function decodes some binary data that has
+function decodes binary data that has
been encoded with base64. The base64-encoding
shall be provided via the
.I str
@@ -32,7 +32,7 @@ is stored in
.PP
.I str
may, but does not have to, be padded, up to
-(or short there of) the next length that is
+(or short thereof) the next length that is
divisible by 4, unless the length is already
divisible by 4, using equals-sign
.RB ( = )
@@ -80,7 +80,7 @@ dynamically allocated buffer.
#include <stdlib.h>
static char *
-decode_base64(const const *str, char **endp, size_t *lenp)
+decode_base64(const *str, char **endp, size_t *lenp)
{
size_t len;
size_t n = libar2_decode_base64(str, NULL, &len);