File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- #ifndef CSTACK_H
2- #define CSTACK_H
3-
4- typedef int hstack_t ;
5-
6-
7-
8-
9- hstack_t stack_new (void );
10- void stack_free (const hstack_t stack );
11- int stack_valid_handler (const hstack_t stack );
12- unsigned int stack_size (const hstack_t stack );
13- void stack_push (const hstack_t stack , const void * data_in , const unsigned int size );
14- unsigned int stack_pop (const hstack_t stack , void * data_out , const unsigned int size );
15-
16- #endif /* CSTACK_H */
1+ #ifndef CSTACK_H
2+ #define CSTACK_H
3+
4+ typedef int hstack_t ;
5+
6+ hstack_t stack_new (void );
7+ void stack_free (const hstack_t stack );
8+ int stack_valid_handler (const hstack_t stack );
9+ unsigned int stack_size (const hstack_t stack );
10+ void stack_push (const hstack_t stack , const void * data_in , const unsigned int size );
11+ unsigned int stack_pop (const hstack_t stack , void * data_out , const unsigned int size );
12+
13+ #endif /* CSTACK_H */
You can’t perform that action at this time.
0 commit comments