From: Michael Göhler Date: Thu, 11 Sep 2014 22:40:53 +0000 (+0200) Subject: added missing prototype to cstack header X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=5ad82fbe2182e1a5d40f25a171a373b8fe48c8a6 added missing prototype to cstack header --- diff --git a/include/cstack.h b/include/cstack.h index edb9847..315dacb 100644 --- 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);