#ifndef LIST_H #define LIST_H #include #include struct exp_data{ char* name; char* command; int (*func_ptr) (void*); }; // Exp list functions void list_add(char* name, char* command, int (*exp_func) (void*)); void print_list_items(); struct exp_data* get_command(char* command); struct exp_data* get_from_list(int index); void clear_list(); #endif