summaryrefslogtreecommitdiff
path: root/group.h
diff options
context:
space:
mode:
Diffstat (limited to 'group.h')
-rw-r--r--group.h26
1 files changed, 26 insertions, 0 deletions
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