Files
privacore-open-source-searc…/GbCopyFile.h
Ivan Skytte Jørgensen 5997dbb083 Added copyFile() function
2016-10-24 14:52:25 +02:00

8 lines
168 B
C

#ifndef GB_COPY_FILE_H_
#define GB_COPY_FILE_H_
//Copy a file. Returns non-zero on error and errno will be set
int copyFile(const char *src, const char *dst);
#endif