diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-22 02:24:44 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-22 02:24:44 +0100 |
| commit | 069301a603ad07338179bafed0c35b6fe3b372f2 (patch) | |
| tree | 74010f542968876938d18effe8939694ddafdc03 /list.h | |
| parent | ac3c52c4431d422affe951ff0641b4eb04787e54 (diff) | |
| download | crep-069301a603ad07338179bafed0c35b6fe3b372f2.tar.gz | |
Better arg parsing
Diffstat (limited to 'list.h')
| -rw-r--r-- | list.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
