added missing prototype to cstack header
authorMichael Göhler <somebody.here@gmx.de>
Thu, 11 Sep 2014 22:40:53 +0000 (00:40 +0200)
committerMichael Göhler <somebody.here@gmx.de>
Thu, 11 Sep 2014 22:40:53 +0000 (00:40 +0200)
include/cstack.h

index edb9847..315dacb 100644 (file)
@@ -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);