diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-05-08 17:52:17 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-05-08 17:52:17 +0000 |
commit | 722cfbe0032c15b1bc9cf13a94197564b0860b09 (patch) | |
tree | c03518f2059504a513119cf4d499ccf5c7233f83 /include/libbb.h | |
parent | 92ce299856803ce2a2e59c4bfd2cc9edce90d3f7 (diff) | |
download | busybox-w32-722cfbe0032c15b1bc9cf13a94197564b0860b09.tar.gz busybox-w32-722cfbe0032c15b1bc9cf13a94197564b0860b09.tar.bz2 busybox-w32-722cfbe0032c15b1bc9cf13a94197564b0860b09.zip |
cryptpw: new applet (a bit less than 3k added)
(by Thomas Lundquist <lists@zelow.no>)
git-svn-id: svn://busybox.net/trunk/busybox@18586 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index be51f2520..32bb3113d 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -718,6 +718,7 @@ extern int bb_parse_mode(const char* s, mode_t* theMode); | |||
718 | 718 | ||
719 | char *concat_path_file(const char *path, const char *filename); | 719 | char *concat_path_file(const char *path, const char *filename); |
720 | char *concat_subpath_file(const char *path, const char *filename); | 720 | char *concat_subpath_file(const char *path, const char *filename); |
721 | /* NB: can violate const-ness (similarly to strchr) */ | ||
721 | char *last_char_is(const char *s, int c); | 722 | char *last_char_is(const char *s, int c); |
722 | 723 | ||
723 | 724 | ||
@@ -755,6 +756,7 @@ extern int index_in_substr_array(const char * const string_array[], const char * | |||
755 | extern void print_login_issue(const char *issue_file, const char *tty); | 756 | extern void print_login_issue(const char *issue_file, const char *tty); |
756 | extern void print_login_prompt(void); | 757 | extern void print_login_prompt(void); |
757 | 758 | ||
759 | extern void crypt_make_salt(char *p, int cnt); | ||
758 | 760 | ||
759 | int get_terminal_width_height(const int fd, int *width, int *height); | 761 | int get_terminal_width_height(const int fd, int *width, int *height); |
760 | 762 | ||