mirror of
https://github.com/theoleuthardt/learningC.git
synced 2026-06-13 01:27:54 +00:00
15 lines
215 B
C
15 lines
215 B
C
#ifndef EXAMTEMPLATE_STACK_H
|
|
#define EXAMTEMPLATE_STACK_H
|
|
|
|
struct Stack{
|
|
int data;
|
|
struct Stack *ptr;
|
|
};
|
|
|
|
int isEmpty();
|
|
void Push(int item);
|
|
int Pop();
|
|
int Top();
|
|
int Size();
|
|
|
|
#endif //EXAMTEMPLATE_STACK_H
|