draft transfer implementation

This commit is contained in:
2024-08-25 00:02:59 +03:00
parent 31953464e7
commit 7d2da74466
105 changed files with 2311 additions and 4151 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);