2020-01-12 00:36:56 +01:00
|
|
|
#ifndef COMPAT_TERMINAL_H
|
|
|
|
#define COMPAT_TERMINAL_H
|
|
|
|
|
|
|
|
char *git_terminal_prompt(const char *prompt, int echo);
|
|
|
|
|
2020-11-21 19:20:35 +01:00
|
|
|
/* Read a single keystroke, without echoing it to the terminal */
|
|
|
|
int read_key_without_echo(struct strbuf *buf);
|
|
|
|
|
2020-01-12 00:36:56 +01:00
|
|
|
#endif /* COMPAT_TERMINAL_H */
|