1#ifndef ARC_STD_STACK_H_
2#define ARC_STD_STACK_H_
uint32_t ARC_Stack_Size(ARC_Stack *stack)
gets size of stack
void ARC_Stack_Create(ARC_Stack **stack)
creates ARC_Stack type
void ARC_Stack_Push(ARC_Stack *stack, void *data)
pushes value on stack
struct ARC_Stack ARC_Stack
a stack type
void * ARC_Stack_Pop(ARC_Stack *stack)
pops top off of ARC_Stack
void ARC_Stack_Destroy(ARC_Stack *stack)
destroyes ARC_Stack type