1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 21:35:53 +02:00
libcproject/test/stack_test.h

19 lines
245 B
C
Raw Normal View History

2023-01-05 19:28:05 +01:00
#ifndef __STACK_TEST__
#define __STACK_TEST__
2023-01-07 19:38:01 +01:00
#include <assert.h>
#include <stdint.h>
#include <stdlib.h>
#include "libcproject.h"
2023-01-05 19:28:05 +01:00
void stack_test();
void stack_initialization_test();
void stack_push_test();
void stack_pop_test();
#endif