diff options
| author | Thorsten Töpper <atsutane@freethoughts.de> | 2026-02-18 21:51:53 +0100 |
|---|---|---|
| committer | Thorsten Töpper <atsutane@freethoughts.de> | 2026-02-18 21:51:53 +0100 |
| commit | d513977a3566b14d9357906615d045d71741537f (patch) | |
| tree | 3e707d2de9da71d98650fa8bb1b92ed11ab724ba /include/directory_scanner.h | |
| parent | eed2d1323441861f2d41f0ecc0a72fcc9190fa5f (diff) | |
| download | duplicate_finder-d513977a3566b14d9357906615d045d71741537f.tar.gz duplicate_finder-d513977a3566b14d9357906615d045d71741537f.tar.bz2 | |
squash initial implementation
Diffstat (limited to 'include/directory_scanner.h')
| -rw-r--r-- | include/directory_scanner.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/directory_scanner.h b/include/directory_scanner.h new file mode 100644 index 0000000..7b2e7d2 --- /dev/null +++ b/include/directory_scanner.h @@ -0,0 +1,15 @@ +/* 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 + |
