9 lines
112 B
C
9 lines
112 B
C
|
#ifndef STACK_TEST_H
|
||
|
#define STACK_TEST_H
|
||
|
|
||
|
#include "../lib/stack.h"
|
||
|
|
||
|
void print_stack(struct stack *);
|
||
|
|
||
|
#endif
|