aboutsummaryrefslogtreecommitdiff
path: root/Computer_Science/data_structures/chapter_3/stack_array.h
diff options
context:
space:
mode:
Diffstat (limited to 'Computer_Science/data_structures/chapter_3/stack_array.h')
-rw-r--r--Computer_Science/data_structures/chapter_3/stack_array.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Computer_Science/data_structures/chapter_3/stack_array.h b/Computer_Science/data_structures/chapter_3/stack_array.h
index 088b0cc..d296a49 100644
--- a/Computer_Science/data_structures/chapter_3/stack_array.h
+++ b/Computer_Science/data_structures/chapter_3/stack_array.h
@@ -4,6 +4,7 @@ struct stack_record;
typedef struct stack_record *stack;
typedef int elem;
+void make_empty(stack s);
int is_empty(stack s);
int is_full(stack s);
stack create_stack(int max_elements);