mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-01-22 02:18:42 -05:00
8 lines
168 B
C
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
|