summaryrefslogtreecommitdiff
path: root/entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'entry.h')
-rw-r--r--entry.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/entry.h b/entry.h
index b76919c..b70462c 100644
--- a/entry.h
+++ b/entry.h
@@ -3,7 +3,7 @@
typedef struct entry ENTRY;
-ENTRY *create_entry(char *new_name, char *new_path);
+ENTRY *create_entry(char *new_name, char *new_path, bool force);
ENTRY *entry_add_last(ENTRY *tail, ENTRY *add);
@@ -13,6 +13,8 @@ char *get_ename(ENTRY *e);
char *get_epath(ENTRY *e);
+bool get_eforce(ENTRY *e);
+
void entry_debug(ENTRY *trav);
#endif