chksum_cpp/main.cpp
AustrianToast 74425df83e
first progress
can't do much beside print out all files and folder
out to the console
2024-02-14 00:12:50 +01:00

7 lines
141 B
C++

#include <iostream>
#include "fs_reader.h"
int main(int argc, char *argv[]) {
(void)find_all_files_and_folders(argv[1]);
return 0;
}