diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-07 17:55:33 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-07 17:55:33 +0200 |
commit | 5711a2a4ad51ad203a2ed4ffc72593e83920b36a (patch) | |
tree | ef650852b982768fa9c3e4065016e09cbf2d0a96 /include | |
parent | c1e2e005b4e99070f58a3545bad54ef41a634ad1 (diff) | |
download | busybox-w32-5711a2a4ad51ad203a2ed4ffc72593e83920b36a.tar.gz busybox-w32-5711a2a4ad51ad203a2ed4ffc72593e83920b36a.tar.bz2 busybox-w32-5711a2a4ad51ad203a2ed4ffc72593e83920b36a.zip |
libbb: more compact API for bb_parse_mode()
function old new delta
make_device 2182 2188 +6
parse_command 1440 1443 +3
parse_params 1497 1499 +2
install_main 773 769 -4
mkdir_main 168 160 -8
getoptscmd 641 632 -9
builtin_umask 158 147 -11
bb_parse_mode 431 410 -21
umaskcmd 286 258 -28
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/6 up/down: 11/-81) Total: -70 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 543214ea4..d79843a2d 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1251,7 +1251,8 @@ char *bb_ask_stdin(const char * prompt) FAST_FUNC; | |||
1251 | char *bb_ask(const int fd, int timeout, const char * prompt) FAST_FUNC; | 1251 | char *bb_ask(const int fd, int timeout, const char * prompt) FAST_FUNC; |
1252 | int bb_ask_confirmation(void) FAST_FUNC; | 1252 | int bb_ask_confirmation(void) FAST_FUNC; |
1253 | 1253 | ||
1254 | int bb_parse_mode(const char* s, mode_t* theMode) FAST_FUNC; | 1254 | /* Returns -1 if input is invalid. current_mode is a base for e.g. "u+rw" */ |
1255 | int bb_parse_mode(const char* s, unsigned cur_mode) FAST_FUNC; | ||
1255 | 1256 | ||
1256 | /* | 1257 | /* |
1257 | * Config file parser | 1258 | * Config file parser |