/* SPDX-License-Identifier: Apache-2.0 */ /* Copyright 2026 Thorsten Töpper * * vim:ts=4:sw=4:expandtab */ #ifndef DIRECTORY_SCANNER_H #define DIRECTORY_SCANNER_H /*=========== FUNCTIONS ===========*/ int process_directory(char *path); int traverse_directory_tree(const char *starting_point); #endif