summaryrefslogtreecommitdiff
path: root/ringbuf.h
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2010-12-16 21:10:16 +0100
committerGravatar waker <wakeroid@gmail.com>2010-12-16 21:10:16 +0100
commitb9fe5451f6eef7cac061e505ffc255648d7e036c (patch)
tree3e97f76c74915694664959c0dd3278274eab7ddf /ringbuf.h
parent62a8c05579b9b36c22fb9870fefea88aedbcafcf (diff)
improved ringbuffer in streamer
Diffstat (limited to 'ringbuf.h')
-rw-r--r--ringbuf.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/ringbuf.h b/ringbuf.h
new file mode 100644
index 00000000..359d3db6
--- /dev/null
+++ b/ringbuf.h
@@ -0,0 +1,40 @@
+/*
+ DeaDBeeF - ultimate music player for GNU/Linux systems with X11
+ Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+#ifndef __RINGBUF_H
+#define __RINGBUF_H
+
+#include <sys/types.h>
+
+typedef struct {
+ char *bytes;
+ size_t size;
+ size_t cursor;
+ size_t remaining;
+} ringbuf_t;
+
+void
+ringbuf_init (ringbuf_t *p, char *buffer, size_t size);
+
+int
+ringbuf_write (ringbuf_t *p, char *bytes, size_t size);
+
+int
+ringbuf_read (ringbuf_t *p, char *bytes, size_t size);
+
+#endif