android_external_toybox/lib/pending.h
Elliott Hughes 30cb3aa0e3 sort: move off get_rawline.
This was the last user of get_rawline, which lets us remove it.
2019-08-12 04:44:00 -05:00

14 lines
378 B
C

// pending.h - header for pending.c
// password.c
#define MAX_SALT_LEN 20 //3 for id, 16 for key, 1 for '\0'
int read_password(char * buff, int buflen, char* mesg);
int update_password(char *filename, char* username, char* encrypted);
// lib.c
// This should be switched to posix-2008 getline()
char *get_line(int fd);
// TODO this goes away when lib/password.c cleaned up