/* copy-file.h: * **************************************************************** * Copyright (C) 2003 Tom Lord * * See the file "COPYING" for further information about * the copyright and warranty status of this work. */ #ifndef INCLUDE__LIBFSUTILS__COPY_FILE_H #define INCLUDE__LIBFSUTILS__COPY_FILE_H #include "libawk/relational.h" /* automatically generated __STDC__ prototypes */ extern void copy_fd (int in_fd, int out_fd); extern void copy_file (char * from, char * to); extern void copy_symlink (char const * const from, char const * const to); extern void copy_file_or_symlink (char * from, char * to); extern void copy_permissions (char * from, char * to); extern void copy_file_list (t_uchar const * const dest_dir, t_uchar const * const src_dir, rel_table index); #endif /* INCLUDE__LIBFSUTILS__COPY_FILE_H */ /* tag: Tom Lord Sat Jan 5 15:26:10 2002 (copy-file.h) */