summaryrefslogtreecommitdiff
path: root/entry.c
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2020-12-28 15:04:49 -0800
committerlouie <lshprung@yahoo.com>2020-12-28 15:04:49 -0800
commit9fa266e62dc0782f7c2125f18fed2668ea414b29 (patch)
tree03c6d839fcb373a8877a4d66fc0c077bd629d90a /entry.c
parentd7fa91b54c7dcce8dedbe32f37cf849f530f8864 (diff)
Cleaned up headers
Diffstat (limited to 'entry.c')
-rw-r--r--entry.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/entry.c b/entry.c
index 188a2de..89bed22 100644
--- a/entry.c
+++ b/entry.c
@@ -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;