diff options
Diffstat (limited to 'lf_fifo.h')
-rw-r--r-- | lf_fifo.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,10 +50,10 @@ typedef struct queue { void lf_fifo_init( lf_fifo_t *q ); /* push a node at the tail of q */ -void lf_fifo_push_tail( lf_fifo_t *q, pointer_t *node ); +void lf_fifo_push( lf_fifo_t *q, pointer_t *node ); /* pop a node from the head of q */ -pointer_t* pop_head( lf_fifo_t *q ); +pointer_t* pop( lf_fifo_t *q ); # ifdef __cplusplus } |