aboutsummaryrefslogtreecommitdiffstats
path: root/liblss16_encode_strerror.3
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-03 16:43:19 +0100
committerMattias Andrée <m@maandree.se>2025-03-03 16:44:37 +0100
commite114123df2a05650f0f7e34044c1e8f829c50a44 (patch)
tree48c408b469d5fc3f1acdf4468ad6f22da8a65370 /liblss16_encode_strerror.3
parentm (diff)
downloadliblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.gz
liblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.bz2
liblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.xz
misc
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'liblss16_encode_strerror.3')
-rw-r--r--liblss16_encode_strerror.343
1 files changed, 43 insertions, 0 deletions
diff --git a/liblss16_encode_strerror.3 b/liblss16_encode_strerror.3
new file mode 100644
index 0000000..758c887
--- /dev/null
+++ b/liblss16_encode_strerror.3
@@ -0,0 +1,43 @@
+.TH LIBLSS16_ENCODE_STRERROR 3 LIBLSS16
+.SH NAME
+liblss16_encode_strerror \- Get error description for an LSS16 encoding error
+
+.SH SYNOPSIS
+.nf
+#include <liblss16.h>
+
+enum liblss16_encode_error { /* values omitted */ };
+
+const char *liblss16_encode_strerror(enum liblss16_encode_error \fIerror\fP);
+.fi
+.PP
+Link with
+.IR -llss16 .
+
+.SH DESCRIPTION
+The
+.BR liblss16_encode_strerror ()
+function returns a stirng the describes
+.IR error .
+.PP
+The function is used for encoding errors, which may be
+received from the
+.BR liblss16_encoder_init (3)
+function.
+
+.SH RETURN VALUE
+The
+.BR liblss16_encode_strerror ()
+function returns a statically allocated single-line
+of text (not LF-terminated) describing the error, in
+sentence case, single-sentence (not period-terminated).
+If the error code is not recognised, a generic text
+is returned.
+
+.SH ERRORS
+The
+.BR liblss16_encode_strerror ()
+function cannot fail.
+
+.SH SEE ALSO
+.BR liblss16 (7)