From c7ab12bba64d9c20ccd79b132dac475f7bc3923e Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 22:22:16 +0100 Subject: Re-enable multi-threading --- list.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'list.h') diff --git a/list.h b/list.h index 24705e1..c958836 100644 --- a/list.h +++ b/list.h @@ -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 -- cgit v1.2.3