CoolPotOS/include/fifo.h

16 lines
328 B
C
Raw Normal View History

2024-05-12 00:17:47 +08:00
#ifndef CRASHPOWEROS_FIFO_H
#define CRASHPOWEROS_FIFO_H
#define FLAGS_OVERRUN 0x0001
struct FIFO8 {
unsigned char *buf;
int p, q, size, free, flags;
};
int fifo8_put(struct FIFO8* fifo, unsigned char data);
int fifo8_get(struct FIFO8* fifo);
void fifo8_init(struct FIFO8* fifo, int size, unsigned char* buf);
#endif