From 069301a603ad07338179bafed0c35b6fe3b372f2 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 22 Jan 2026 02:24:44 +0100 Subject: Better arg parsing --- list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'list.h') diff --git a/list.h b/list.h index c958836..e34d921 100644 --- a/list.h +++ b/list.h @@ -7,7 +7,7 @@ typedef struct node { } Node; void add_file_path(Node **head, char *file_path); -void list_files_recursively(char *base_path, Node **head); +void list_files_recursively(char *base_path, Node **head, int max_depth, int current_depth); void free_file_list(Node *head); int size_of_file_list(Node *head); -- cgit v1.2.3