summaryrefslogtreecommitdiff
path: root/src/copy.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-22 19:47:58 +0000
committerJim Meyering <jim@meyering.net>2001-11-22 19:47:58 +0000
commit039ff08371a99ed7c60f4bcd0d0dc282e49f348b (patch)
tree95a4f1365b124e1ac42d050025a3bbb42eb115d5 /src/copy.h
parent507e4c7e696f35c8f9ff7e457d250c24cee1845f (diff)
downloadcoreutils-039ff08371a99ed7c60f4bcd0d0dc282e49f348b.tar.xz
(struct cp_options) [src_info]: New member.
(src_info_init): Declare.
Diffstat (limited to 'src/copy.h')
-rw-r--r--src/copy.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/copy.h b/src/copy.h
index 0c88f7e7e..eb13062b0 100644
--- a/src/copy.h
+++ b/src/copy.h
@@ -165,7 +165,10 @@ struct cp_options
When renaming, it protects all non-directories.
Use dest_info_init to initialize it, or set it to NULL to disable
this feature. */
- struct hash_table *dest_info;
+ Hash_table *dest_info;
+
+ /* FIXME */
+ Hash_table *src_info;
};
int stat ();
@@ -198,5 +201,7 @@ copy PARAMS ((const char *src_path, const char *dst_path,
void
dest_info_init PARAMS ((struct cp_options *));
+void
+src_info_init PARAMS ((struct cp_options *));
#endif