aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-01 21:47:15 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-01 21:47:15 +0000
commita95fa3cae0e63dd7d3bbe8672a81a0ffd5c4de67 (patch)
treec833c8f3a72637660af61b061b90d69d987fed25 /include/libbb.h
parent36bc4bcd564d935828df0cb4c8b88ab245fc3b69 (diff)
downloadbusybox-w32-a95fa3cae0e63dd7d3bbe8672a81a0ffd5c4de67.tar.gz
busybox-w32-a95fa3cae0e63dd7d3bbe8672a81a0ffd5c4de67.tar.bz2
busybox-w32-a95fa3cae0e63dd7d3bbe8672a81a0ffd5c4de67.zip
Vladimir's last_patch13, containing several bugfixes.
git-svn-id: svn://busybox.net/trunk/busybox@2779 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 4e324bf86..31bd97f2e 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -92,16 +92,6 @@ const char *time_string(time_t timeVal);
92int is_directory(const char *name, int followLinks, struct stat *statBuf); 92int is_directory(const char *name, int followLinks, struct stat *statBuf);
93int isDevice(const char *name); 93int isDevice(const char *name);
94 94
95typedef struct ino_dev_hash_bucket_struct {
96 struct ino_dev_hash_bucket_struct *next;
97 ino_t ino;
98 dev_t dev;
99 char name[1];
100} ino_dev_hashtable_bucket_t;
101int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
102void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
103void reset_ino_dev_hashtable(void);
104
105int remove_file(const char *path, int flags); 95int remove_file(const char *path, int flags);
106int copy_file(const char *source, const char *dest, int flags); 96int copy_file(const char *source, const char *dest, int flags);
107int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize); 97int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize);