summaryrefslogtreecommitdiff
path: root/lib/buffer/ringbuffer.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-13 00:35:06 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-13 00:35:06 +0100
commitb126d01e9687e6509c9d49b1b174c95aee603a89 (patch)
treefe05187f4f9c28ef65bf530116c20c05f1a679b8 /lib/buffer/ringbuffer.h
parente3c4f3b03aa77ea19ddf7d982d39871dbdc018c0 (diff)
fixing implicit functions!
Diffstat (limited to 'lib/buffer/ringbuffer.h')
-rw-r--r--lib/buffer/ringbuffer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/buffer/ringbuffer.h b/lib/buffer/ringbuffer.h
new file mode 100644
index 0000000..2bb6528
--- /dev/null
+++ b/lib/buffer/ringbuffer.h
@@ -0,0 +1,5 @@
+#include "lib/bool/bool.h"
+
+void ringbuffer_init();
+bool ringbuffer_put(char c);
+bool ringbuffer_get(char *c);