summaryrefslogtreecommitdiff
path: root/entry.h
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2020-06-16 21:23:02 -0700
committerlouie <lshprung@yahoo.com>2020-06-16 21:23:02 -0700
commit96d5b7878f70b93651106b19768edfba7ba3dafd (patch)
tree4891b8f14b1595b269a70bbf9fa019c765f5449c /entry.h
parentbad94ac2786a4e765707b5766ab3999e604e9d0b (diff)
Printing group column
Diffstat (limited to 'entry.h')
-rw-r--r--entry.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/entry.h b/entry.h
new file mode 100644
index 0000000..3c8a366
--- /dev/null
+++ b/entry.h
@@ -0,0 +1,18 @@
+#ifndef ENTRY_H
+#define ENTRY_H
+
+typedef struct entry ENTRY;
+
+ENTRY *create_entry(char *new_path, char *new_group);
+
+ENTRY *entry_add_last(ENTRY *tail, ENTRY *add);
+
+ENTRY **get_entries(ENTRY *head, int count);
+
+char *get_ename(ENTRY *e);
+
+char *get_epath(ENTRY *e);
+
+void entry_debug(ENTRY *trav);
+
+#endif