jbuffer
 All Files Functions Typedefs
jbuffer.h
Go to the documentation of this file.
1 
10 #ifndef JBUFFER_H
11 #define JBUFFER_H
12 
13 #include <stdlib.h>
14 
15 
17 typedef struct BNDBUF BNDBUF;
18 
31 BNDBUF *bbCreate(size_t size);
32 
41 void bbDestroy(BNDBUF *bb);
42 
52 void bbPut(BNDBUF *bb, int value);
53 
63 int bbGet(BNDBUF *bb);
64 
65 
66 #endif /* JBUFFER_H */