summaryrefslogtreecommitdiff
path: root/src/include/entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/entry.h')
-rw-r--r--src/include/entry.h18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/include/entry.h b/src/include/entry.h
index 51e43ca..a46dc46 100644
--- a/src/include/entry.h
+++ b/src/include/entry.h
@@ -1,17 +1,11 @@
+#include <stdbool.h>
+
#ifndef ENTRY_H
#define ENTRY_H
typedef struct entry 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);
+ENTRY *create_entry(const char *new_name, const char *new_path, const bool force);
char *get_ename(ENTRY *e);
@@ -19,10 +13,4 @@ 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);
-
#endif