diff options
author | louie <lshprung@yahoo.com> | 2020-12-28 15:04:49 -0800 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-12-28 15:04:49 -0800 |
commit | 9fa266e62dc0782f7c2125f18fed2668ea414b29 (patch) | |
tree | 03c6d839fcb373a8877a4d66fc0c077bd629d90a /entry.c | |
parent | d7fa91b54c7dcce8dedbe32f37cf849f530f8864 (diff) |
Cleaned up headers
Diffstat (limited to 'entry.c')
-rw-r--r-- | entry.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -18,18 +18,6 @@ typedef struct entry{ struct entry *next; } ENTRY; -ENTRY *create_entry(char *new_name, char *new_path, bool force); -void entry_rm(ENTRY *e, ENTRY *prev); -void clear_entries(ENTRY *head); -int entry_add(ENTRY *head, ENTRY *tail, ENTRY *add); -ENTRY **get_entries(ENTRY *head, int count); -char *get_ename(ENTRY *e); -char *get_epath(ENTRY *e); -bool get_eforce(ENTRY *e); -void set_hide(ENTRY *e, bool status); -bool get_hide(ENTRY *e); -void entry_debug(ENTRY *trav); - ENTRY *create_entry(char *new_name, char *new_path, bool force){ ENTRY *new; |