C Everything
This is a C repository containing a curated set of generic data structures and algorithm.
|
Contains declations of stack types, operations and structure. More...
Go to the source code of this file.
Data Structures | |
struct | stack |
stack struct defn More... | |
Typedefs | |
typedef struct stack | t_stack |
stack struct defn More... | |
Enumerations | |
enum | e_stacktype { eLL_STACK , eARRAY_STACK , eARRAY_STACK_DOWN } |
types of supported stacks More... | |
Functions | |
t_gen | create_stack (char *name, int max_size, e_stacktype, t_dparams *) |
Create an instance of stack More... | |
Contains declations of stack types, operations and structure.
Definition in file stack.h.
enum e_stacktype |
t_gen create_stack | ( | char * | name, |
int | max_size, | ||
e_stacktype | stype, | ||
t_dparams * | prm | ||
) |