#ifndef LIST_FILE_H #define LIST_FILE_H #include typedef struct _List_Entry List_Entry; struct _List_Entry { EINA_INLIST; char *name; const char *command; }; List_Entry *list_file_load(const char *filename); void list_file_free(List_Entry *list); #endif