aboutsummaryrefslogtreecommitdiff
path: root/include/directory_scanner.h
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane@freethoughts.de>2026-02-18 21:51:53 +0100
committerThorsten Töpper <atsutane@freethoughts.de>2026-02-18 21:51:53 +0100
commitd513977a3566b14d9357906615d045d71741537f (patch)
tree3e707d2de9da71d98650fa8bb1b92ed11ab724ba /include/directory_scanner.h
parenteed2d1323441861f2d41f0ecc0a72fcc9190fa5f (diff)
downloadduplicate_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.h15
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
+