Копирование файлов в каталог с использованием memcpy и mmap, чтобы все файлы были размером 1 байт
#c #multithreading Вопрос: #include lt;stdio.hgt; #include lt;stdlib.hgt; #include lt;sys/types.hgt; #include lt;dirent.hgt; #include lt;pthread.hgt; #include lt;fcntl.hgt; #include lt;unistd.hgt; #include lt;sys/stat.hgt; #include lt;sys/mman.hgt; #include lt;string.hgt; void* copyFile(void* arg) { char *filename =…