00001 /*------------------------------------------------------------------------- 00002 * 00003 * copydir.h 00004 * Copy a directory. 00005 * 00006 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00007 * Portions Copyright (c) 1994, Regents of the University of California 00008 * 00009 * src/include/storage/copydir.h 00010 * 00011 *------------------------------------------------------------------------- 00012 */ 00013 #ifndef COPYDIR_H 00014 #define COPYDIR_H 00015 00016 extern void copydir(char *fromdir, char *todir, bool recurse); 00017 extern void copy_file(char *fromfile, char *tofile); 00018 00019 #endif /* COPYDIR_H */