1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include <stdbool.h> #ifndef ENTRY_H #define ENTRY_H typedef struct entry ENTRY; ENTRY *create_entry(const char *new_name, const char *new_path, const bool force); char *get_ename(ENTRY *e); char *get_epath(ENTRY *e); bool get_eforce(ENTRY *e); #endif