diff options
Diffstat (limited to 'entry.h')
-rw-r--r-- | entry.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -5,7 +5,9 @@ typedef struct entry ENTRY; ENTRY *create_entry(char *new_name, char *new_path, bool force); -void entry_rm(ENTRY *e); +void entry_rm(ENTRY *e, ENTRY *prev); + +void clear_entries(ENTRY *head); ENTRY *entry_add_last(ENTRY *tail, ENTRY *add); |