diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 22:22:16 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 22:22:16 +0100 |
| commit | c7ab12bba64d9c20ccd79b132dac475f7bc3923e (patch) | |
| tree | abf2891f9bd1bfa549ed460b288e2c19348bc230 /list.h | |
| parent | 2b3d92e401f0065e440b51da9a6532695b37ef84 (diff) | |
| download | crep-c7ab12bba64d9c20ccd79b132dac475f7bc3923e.tar.gz | |
Re-enable multi-threading
Diffstat (limited to 'list.h')
| -rw-r--r-- | list.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2,13 +2,13 @@ #define LIST_H typedef struct node { - char* file_path; - struct node* next; + char *file_path; + struct node *next; } Node; -void add_file_path(Node** head, char* file_path); -void list_files_recursively(char* base_path, Node** head); -void free_file_list(Node* head); -int size_of_file_list(Node* head); +void add_file_path(Node **head, char *file_path); +void list_files_recursively(char *base_path, Node **head); +void free_file_list(Node *head); +int size_of_file_list(Node *head); #endif |
