Merge pull request #907 from lordofhyphens/deltagrid_cartesian
[clinton/Smoothieware.git] / src / libs / Network / uip / c-fifo.h
CommitLineData
d4ee6ee2
JM
1#ifndef _CFIFO_H_
2#define _CFIFO_H_
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8void *new_fifo();
9void delete_fifo(void *);
10char *fifo_pop(void *);
11void fifo_push(void *, char *);
12int fifo_size(void *);
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif