#include "fifo.h" bool fifo_put(fifo* f,uint8_t c) { return f->put(f->data,c); } uint8_t fifo_get(fifo* f) { return f->get(f->data); } bool fifo_has(fifo* f) { return f->has(f->data); }