From 96d5b7878f70b93651106b19768edfba7ba3dafd Mon Sep 17 00:00:00 2001 From: louie Date: Tue, 16 Jun 2020 21:23:02 -0700 Subject: Printing group column --- group.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 group.h (limited to 'group.h') diff --git a/group.h b/group.h new file mode 100644 index 0000000..1afb63d --- /dev/null +++ b/group.h @@ -0,0 +1,26 @@ +#ifndef GROUP_H +#define GROUP_H + +typedef struct group GROUP; + +GROUP *create_group(char *new_path); + +void group_add(char *gname, ENTRY *addme); + +GROUP **get_groups(); + +char *get_gname(GROUP *g); + +char *get_gpath(GROUP *g); + +char *get_gprog(GROUP *g); + +ENTRY *get_ghead(GROUP *g); + +int get_ecount(GROUP *g); + +int get_gcount(); + +void group_debug(); + +#endif -- cgit