From 25e6afd831b94b9735cc6691ee19c8edc921aca7 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 8 Apr 2018 01:14:30 +0100 Subject: working decoding --- app/ring.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/ring.h (limited to 'app/ring.h') diff --git a/app/ring.h b/app/ring.h new file mode 100644 index 0000000..1eae65b --- /dev/null +++ b/app/ring.h @@ -0,0 +1,6 @@ +typedef struct ring { + uint8_t *data; + size_t size; + size_t write; + size_t read; +} ring_t; -- cgit v1.2.3