mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-05 03:47:45 +03:00
8 lines
175 B
C
8 lines
175 B
C
|
|
#ifndef GET_LINE_H
|
|
#define GET_LINE_H
|
|
|
|
int get_line(char *line, size_t max_len, const char *prompt);
|
|
int get_password(char *pwd, size_t max_len, const char *prompt);
|
|
|
|
#endif
|