From 9fa266e62dc0782f7c2125f18fed2668ea414b29 Mon Sep 17 00:00:00 2001 From: louie Date: Mon, 28 Dec 2020 15:04:49 -0800 Subject: Cleaned up headers --- group.c | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'group.c') 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; -- cgit