1#ifndef ARC_STD_QUEUE_H_
2#define ARC_STD_QUEUE_H_
void ARC_Queue_Push(ARC_Queue *queue, void *data)
pushes value to end of queue
void ARC_Queue_Destroy(ARC_Queue *queue)
destroyes ARC_Queue type
struct ARC_Queue ARC_Queue
a queue type
void * ARC_Queue_Pop(ARC_Queue *queue)
pops the front off of the ARC_Queue
uint32_t ARC_Queue_Size(ARC_Queue *queue)
gets size of queue
void ARC_Queue_Create(ARC_Queue **queue)
creates ARC_Queue type