Fork of Smoothie to port to mbed non-LPC targets.

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

libs/Network/uip/c-fifo.h

Committer:
Michael J. Spencer
Date:
2014-02-28
Revision:
2:1df0b61d3b5a

File content as of revision 2:1df0b61d3b5a:

#ifndef _CFIFO_H_
#define _CFIFO_H_

#ifdef __cplusplus
extern "C" {
#endif

void *new_fifo();
void delete_fifo(void *);
char *fifo_pop(void *);
void fifo_push(void *, char *);
int fifo_size(void *);

#ifdef __cplusplus
}
#endif

#endif