aboutsummaryrefslogtreecommitdiffstats
path: root/liblss16_decoder_init.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-02 18:38:02 +0100
committerMattias Andrée <m@maandree.se>2025-03-02 18:38:02 +0100
commitb60d205c290e843e05009cc709f2d3d1c1cd4aea (patch)
tree580efa2c4965d6bdd83f450d341136f7458a4db8 /liblss16_decoder_init.c
downloadliblss16-b60d205c290e843e05009cc709f2d3d1c1cd4aea.tar.gz
liblss16-b60d205c290e843e05009cc709f2d3d1c1cd4aea.tar.bz2
liblss16-b60d205c290e843e05009cc709f2d3d1c1cd4aea.tar.xz
First commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'liblss16_decoder_init.c')
-rw-r--r--liblss16_decoder_init.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/liblss16_decoder_init.c b/liblss16_decoder_init.c
new file mode 100644
index 0000000..e0fa309
--- /dev/null
+++ b/liblss16_decoder_init.c
@@ -0,0 +1,10 @@
+/* See LICENSE file for copyright and license details. */
+#include "liblss16.h"
+#include <string.h>
+
+
+void
+liblss16_decoder_init(struct liblss16_decoder *decoder)
+{
+ memset(decoder, 0, sizeof(*decoder));
+}