mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
13 lines
158 B
C
13 lines
158 B
C
|
#ifndef __STACK_TEST__
|
||
|
#define __STACK_TEST__
|
||
|
|
||
|
void stack_test();
|
||
|
|
||
|
void stack_initialization_test();
|
||
|
|
||
|
void stack_push_test();
|
||
|
|
||
|
void stack_pop_test();
|
||
|
|
||
|
#endif
|