diff options
author | Louie Shprung <lshprung@tutanota.com> | 2024-08-11 17:49:28 -0400 |
---|---|---|
committer | Louie Shprung <lshprung@tutanota.com> | 2024-08-11 17:49:28 -0400 |
commit | 4e68f637300c0e360d49f8f672d0675d42da0d1f (patch) | |
tree | 9603de49bbbc19623823479fce6bb95c40fda26a /src/include/entry.h | |
parent | 85596300cc45d73bd3335d8c802b7c590fb1e1d2 (diff) |
(Currently broken) reimplementation of group and entry
Diffstat (limited to 'src/include/entry.h')
-rw-r--r-- | src/include/entry.h | 18 |
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 |