summaryrefslogtreecommitdiff
path: root/group.h
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.h
parentd7fa91b54c7dcce8dedbe32f37cf849f530f8864 (diff)
Cleaned up headers
Diffstat (limited to 'group.h')
-rw-r--r--group.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/group.h b/group.h
index 03db702..ab6f409 100644
--- a/group.h
+++ b/group.h
@@ -9,7 +9,7 @@ void group_add(char *gname, ENTRY *addme);
void group_rm(GROUP *g);
-void clean_groups();
+void clean_groups(); //remove empty groups from linked list
GROUP **get_groups();
@@ -27,7 +27,7 @@ ENTRY *get_ghead(GROUP *g);
int get_ecount(GROUP *g);
-void set_ecount(GROUP *g, int new_count);
+void set_ecount(GROUP *g, int new_count); //for use in hiding entries
void set_gquotes(GROUP *g, bool b);
@@ -35,6 +35,6 @@ bool get_gquotes(GROUP *g);
int get_gcount();
-void group_debug();
+void group_debug(); //debug function to output all groups
#endif