mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
19 lines
245 B
C
19 lines
245 B
C
#ifndef __STACK_TEST__
|
|
#define __STACK_TEST__
|
|
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "libcproject.h"
|
|
|
|
void stack_test();
|
|
|
|
void stack_initialization_test();
|
|
|
|
void stack_push_test();
|
|
|
|
void stack_pop_test();
|
|
|
|
#endif
|