mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-08-28 23:58:22 +00:00
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
typedef struct Queue Queue;
|
||||
|
||||
void queue_enqueue(Queue* queue, void* item);
|
||||
void queue_dequeue(Queue* queue, void* item);
|
||||
void queue_peek(Queue* queue, void* item);
|
||||
int queue_count(Queue* queue);
|
||||
int queue_capacity(Queue* queue);
|
||||
void queue_clear(Queue* queue);
|
||||
Queue* queue_alloc(int capacity, int elemSize);
|
||||
void queue_free(Queue* queue);
|
||||
Reference in New Issue
Block a user