-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcbuffer.h
51 lines (36 loc) · 1.61 KB
/
cbuffer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef CBUFFER_H
#define CBUFFER_H
typedef struct
{
char* data; /* raw byte vector */
unsigned int head; /* Index of the first element // head in [0 .. max_size-1] */
unsigned int size; /* Current Buffer size // size in [0 .. max_size] */
unsigned int max_size; /* Buffer max capacity */
}
cbuffer_t;
/* Operations supported by cbuffer_t */
/* Creates a new cbuffer (takes care of allocating memory) */
cbuffer_t* create_cbuffer_t (unsigned int max_size);
/* Release memory from circular buffer */
void destroy_cbuffer_t ( cbuffer_t* cbuffer );
/* Returns the number of elements in the buffer */
int size_cbuffer_t ( cbuffer_t* cbuffer );
/* Returns the number of free gaps in the buffer */
int nr_gaps_cbuffer_t ( cbuffer_t* cbuffer );
/* Returns a non-zero value when buffer is full */
int is_full_cbuffer_t ( cbuffer_t* cbuffer );
/* Returns a non-zero value when buffer is empty */
int is_empty_cbuffer_t ( cbuffer_t* cbuffer );
/* Inserts an item at the end of the buffer */
void insert_cbuffer_t ( cbuffer_t* cbuffer, char new_item );
/* Inserts nr_items into the buffer */
void insert_items_cbuffer_t ( cbuffer_t* cbuffer, const char* items, int nr_items);
/* Removes the first element in the buffer and returns a copy of it */
char remove_cbuffer_t ( cbuffer_t* cbuffer);
/* Removes nr_items from the buffer and returns a copy of them */
void remove_items_cbuffer_t ( cbuffer_t* cbuffer, char* items, int nr_items);
/* Removes all items in the buffer */
void clear_cbuffer_t (cbuffer_t* cbuffer);
/* Returns a pointer to the first element in the buffer */
char* head_cbuffer_t ( cbuffer_t* cbuffer );
#endif