diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 10 |
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); | |||
92 | int is_directory(const char *name, int followLinks, struct stat *statBuf); | 92 | int is_directory(const char *name, int followLinks, struct stat *statBuf); |
93 | int isDevice(const char *name); | 93 | int isDevice(const char *name); |
94 | 94 | ||
95 | typedef 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; | ||
101 | int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); | ||
102 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); | ||
103 | void reset_ino_dev_hashtable(void); | ||
104 | |||
105 | int remove_file(const char *path, int flags); | 95 | int remove_file(const char *path, int flags); |
106 | int copy_file(const char *source, const char *dest, int flags); | 96 | int copy_file(const char *source, const char *dest, int flags); |
107 | int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize); | 97 | int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize); |