mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
18 lines
471 B
C
18 lines
471 B
C
|
#ifndef COSMOPOLITAN_LIBC_STDIO_READPASSPHRASE_H_
|
||
|
#define COSMOPOLITAN_LIBC_STDIO_READPASSPHRASE_H_
|
||
|
|
||
|
#define RPP_ECHO_OFF 0x00
|
||
|
#define RPP_ECHO_ON 0x01
|
||
|
#define RPP_REQUIRE_TTY 0x02
|
||
|
#define RPP_FORCELOWER 0x04
|
||
|
#define RPP_FORCEUPPER 0x08
|
||
|
#define RPP_SEVENBIT 0x10
|
||
|
#define RPP_STDIN 0x20
|
||
|
|
||
|
COSMOPOLITAN_C_START_
|
||
|
|
||
|
char *readpassphrase(const char *, char *, size_t, int) libcesque;
|
||
|
|
||
|
COSMOPOLITAN_C_END_
|
||
|
#endif /* COSMOPOLITAN_LIBC_STDIO_READPASSPHRASE_H_ */
|