basic queue written, still need to test

This commit is contained in:
herbglitch 2024-02-08 03:12:37 -07:00
parent c3b4a4e209
commit 314f490bef
4 changed files with 140 additions and 6 deletions

View file

@ -42,9 +42,9 @@ void ARC_Stack_Push(ARC_Stack *stack, void *data);
void *ARC_Stack_Pop(ARC_Stack *stack);
/**
* @brief gets size of vector
* @brief gets size of stack
*
* @param vector ARC_Vector to get size from
* @param stack ARC_Stack to get size from
*
* @return the stacks size
*/
@ -54,4 +54,4 @@ uint32_t ARC_Stack_Size(ARC_Stack *stack);
}
#endif
#endif //ARC_STD_STACK_H_
#endif //ARC_STD_STACK_H_