summaryrefslogtreecommitdiff
path: root/group.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 /group.c
parentd7fa91b54c7dcce8dedbe32f37cf849f530f8864 (diff)
Cleaned up headers
Diffstat (limited to 'group.c')
-rw-r--r--group.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/group.c b/group.c
index a34556f..b7c7de0 100644
--- a/group.c
+++ b/group.c
@@ -20,24 +20,6 @@ typedef struct group{
bool launcher_quotes; //set by a group option whether or not the launcher should be wrapped by quotes
} GROUP;
-GROUP *create_group(char *new_name);
-void group_add(char *gname, ENTRY *addme);
-void group_rm(GROUP *g);
-void clean_groups(); //remove empty groups from linked list
-GROUP **get_groups();
-char *get_gname(GROUP *g);
-char *get_gprog(GROUP *g);
-void set_gprog(GROUP *g, char *p);
-char *get_gflags(GROUP *g);
-void set_gflags(GROUP *g, char *p);
-ENTRY *get_ghead(GROUP *g);
-int get_ecount(GROUP *g);
-void set_ecount(GROUP *g, int new_count); //for use in hiding entries
-void set_gquotes(GROUP *g, bool b);
-bool get_gquotes(GROUP *g);
-int get_gcount();
-void group_debug(); //debug function to output all groups
-
GROUP *groups_head;
GROUP *gp; //pointer to remember last group that was looked at
int group_count = 0;