aboutsummaryrefslogtreecommitdiff
path: root/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'list.h')
-rw-r--r--list.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/list.h b/list.h
index 24705e1..c958836 100644
--- a/list.h
+++ b/list.h
@@ -2,13 +2,13 @@
2#define LIST_H 2#define LIST_H
3 3
4typedef struct node { 4typedef struct node {
5 char* file_path; 5 char *file_path;
6 struct node* next; 6 struct node *next;
7} Node; 7} Node;
8 8
9void add_file_path(Node** head, char* file_path); 9void add_file_path(Node **head, char *file_path);
10void list_files_recursively(char* base_path, Node** head); 10void list_files_recursively(char *base_path, Node **head);
11void free_file_list(Node* head); 11void free_file_list(Node *head);
12int size_of_file_list(Node* head); 12int size_of_file_list(Node *head);
13 13
14#endif 14#endif