Consistently use "superuser" instead of "super user"
[pgsql.git] / src / include / storage / copydir.h
blob2c3936b0dad8b50dd6599bc1aff0842072c38041
1 /*-------------------------------------------------------------------------
3 * copydir.h
4 * Copy a directory.
6 * Portions Copyright (c) 1996-2021, 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(char *fromdir, char *todir, bool recurse);
17 extern void copy_file(char *fromfile, char *tofile);
19 #endif /* COPYDIR_H */