mirror of
https://github.com/theoleuthardt/learningC.git
synced 2026-06-13 09:37:53 +00:00
Initial commit
This commit is contained in:
commit
826d4c8c9d
81 changed files with 7268 additions and 0 deletions
15
examTemplate/examTemp_modules/stack.h
Normal file
15
examTemplate/examTemp_modules/stack.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue