draft transfer implementation

This commit is contained in:
2024-08-25 00:02:59 +03:00
parent 31953464e7
commit d2f369af9a
109 changed files with 2314 additions and 4165 deletions

7
include/client.hpp Normal file
View File

@@ -0,0 +1,7 @@
#ifdef __SWITCH__
namespace fs = std::filesystem;
#else
namespace fs = std::__fs::filesystem;
#endif
int transfer_files(fs::path directory, char** filenames, int file_count);