mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 13:17:56 +00:00
14 lines
444 B
C
14 lines
444 B
C
|
struct fifo *fifo_alloc(unsigned int size);
|
||
|
void fifo_free(struct fifo *fifo);
|
||
|
void fifo_reset(struct fifo *fifo);
|
||
|
unsigned int fifo_put(struct fifo *fifo, uint8_t *buffer, unsigned int len);
|
||
|
unsigned int fifo_get(struct fifo *fifo, uint8_t *buffer, unsigned int len);
|
||
|
unsigned int fifo_unget(struct fifo *fifo, uint8_t *buffer, unsigned int len);
|
||
|
unsigned int fifo_avail(struct fifo *fifo);
|
||
|
unsigned int fifo_space(struct fifo *fifo);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|