diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/libbb.h b/include/libbb.h index 71f439fa9..77c678cee 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -846,10 +846,13 @@ extern int correct_password(const struct passwd *pw); | |||
846 | /* Returns a ptr to static storage */ | 846 | /* Returns a ptr to static storage */ |
847 | extern char *pw_encrypt(const char *clear, const char *salt); | 847 | extern char *pw_encrypt(const char *clear, const char *salt); |
848 | extern int obscure(const char *old, const char *newval, const struct passwd *pwdp); | 848 | extern int obscure(const char *old, const char *newval, const struct passwd *pwdp); |
849 | extern int index_in_str_array(const char *const string_array[], const char *key); | 849 | |
850 | extern int index_in_strings(const char *strings, const char *key); | 850 | int index_in_str_array(const char *const string_array[], const char *key); |
851 | extern int index_in_substr_array(const char *const string_array[], const char *key); | 851 | int index_in_strings(const char *strings, const char *key); |
852 | extern int index_in_substrings(const char *strings, const char *key); | 852 | int index_in_substr_array(const char *const string_array[], const char *key); |
853 | int index_in_substrings(const char *strings, const char *key); | ||
854 | const char *nth_string(const char *strings, int n); | ||
855 | |||
853 | extern void print_login_issue(const char *issue_file, const char *tty); | 856 | extern void print_login_issue(const char *issue_file, const char *tty); |
854 | extern void print_login_prompt(void); | 857 | extern void print_login_prompt(void); |
855 | 858 | ||