Unmark gen_random_uuid() function leakproof.
[pgsql.git] / src / include / storage / copydir.h
bloba25e258f4797e46891ed8ce0fc559e09c6542140
1 /*-------------------------------------------------------------------------
3 * copydir.h
4 * Copy a directory.
6 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * src/include/storage/copydir.h
11 *-------------------------------------------------------------------------
13 #ifndef COPYDIR_H
14 #define COPYDIR_H
16 extern void copydir(const char *fromdir, const char *todir, bool recurse);
17 extern void copy_file(const char *fromfile, const char *tofile);
19 #endif /* COPYDIR_H */