diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index d734abed6..7f0ad2c25 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -231,11 +231,14 @@ extern const char *bb_mode_string(mode_t mode); | |||
231 | extern int is_directory(const char *name, int followLinks, struct stat *statBuf); | 231 | extern int is_directory(const char *name, int followLinks, struct stat *statBuf); |
232 | extern int remove_file(const char *path, int flags); | 232 | extern int remove_file(const char *path, int flags); |
233 | extern int copy_file(const char *source, const char *dest, int flags); | 233 | extern int copy_file(const char *source, const char *dest, int flags); |
234 | extern int recursive_action(const char *fileName, int recurse, | 234 | #define action_recurse (1<<0) |
235 | int followLinks, int depthFirst, | 235 | #define action_followLinks (1<<1) |
236 | #define action_depthFirst (1<<2) | ||
237 | #define action_reverse (1<<3) | ||
238 | extern int recursive_action(const char *fileName, unsigned flags, | ||
236 | int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData, int depth), | 239 | int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData, int depth), |
237 | int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData, int depth), | 240 | int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData, int depth), |
238 | void* userData, int depth); | 241 | void* userData, const unsigned depth); |
239 | extern int device_open(const char *device, int mode); | 242 | extern int device_open(const char *device, int mode); |
240 | extern int get_console_fd(void); | 243 | extern int get_console_fd(void); |
241 | extern char *find_block_device(const char *path); | 244 | extern char *find_block_device(const char *path); |