mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-01-22 02:18:42 -05:00
8 lines
196 B
C
8 lines
196 B
C
#ifndef GB_MOVE_FILE_H_
|
|
#define GB_MOVE_FILE_H_
|
|
|
|
//Move/rename a file, even across devices. Returns non-zero on error and errno will be set
|
|
int moveFile(const char *src, const char *dst);
|
|
|
|
#endif
|