pinosaur
/
smdp.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba4e2ed
)
added missing prototype to cstack header
author
Michael Göhler
<somebody.here@gmx.de>
Thu, 11 Sep 2014 22:40:53 +0000
(
00:40
+0200)
committer
Michael Göhler
<somebody.here@gmx.de>
Thu, 11 Sep 2014 22:40:53 +0000
(
00:40
+0200)
include/cstack.h
patch
|
blob
|
history
diff --git
a/include/cstack.h
b/include/cstack.h
index
edb9847
..
315dacb
100644
(file)
--- a/
include/cstack.h
+++ b/
include/cstack.h
@@
-13,6
+13,7
@@
typedef struct _cstack_t {
void (*delete)(struct _cstack_t *self);
} cstack_t;
+cstack_t *cstack_init();
void cstack_push(cstack_t *self, char c);
char cstack_pop(cstack_t *self);
char cstack_top(cstack_t *self);