]> andersk Git - openssh.git/blob - cli.h
b8d0ed056d3d9954209a7cd75c72bd9e74283a71
[openssh.git] / cli.h
1 /* $OpenBSD: cli.h,v 1.2 2000/10/16 09:38:44 djm Exp $ */
2
3 #ifndef CLI_H
4 #define CLI_H
5
6 /*
7  * Presents a prompt and returns the response allocated with xmalloc().
8  * Uses /dev/tty or stdin/out depending on arg.  Optionally disables echo
9  * of response depending on arg.  Tries to ensure that no other userland
10  * buffer is storing the response.
11  */
12 char*   cli_read_passphrase(const char* prompt, int from_stdin,
13     int echo_enable);
14 char*   cli_prompt(char* prompt, int echo_enable);
15 void    cli_mesg(char* mesg);
16
17 #endif /* CLI_H */
This page took 0.027216 seconds and 3 git commands to generate.