diff options
| author | Christian Cunningham <cc@local.lan> | 2025-03-04 19:16:00 -0800 |
|---|---|---|
| committer | Christian Cunningham <cc@local.lan> | 2025-03-04 19:16:00 -0800 |
| commit | e9c4bede32b0b80e111a372fc6cf6c53f4e453c9 (patch) | |
| tree | 8989d7141c2512083065ea29c4b2ff0667407da6 /src/main.c | |
| parent | 17857e46daf1f9d692ec09f555eb25eb84547db4 (diff) | |
Verbose function name
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ int main(int argc, char** argv) //----------------------------------------------- //-LIST-FILES-IN-DIRECTORY----------------------- //----------------------------------------------- - char** file_list = lsdir("data/"); + char** file_list = list_directory("data/"); if (file_list) { size_t index = 0; while (1) { @@ -37,7 +37,7 @@ int main(int argc, char** argv) } if (argc > 1) { if (is_directory(argv[1])) { - file_list = lsdir(argv[1]); + file_list = list_directory(argv[1]); if (file_list) { size_t index = 0; while (1) { |
