diff options
Diffstat (limited to 'third_party/git/compat/terminal.h')
-rw-r--r-- | third_party/git/compat/terminal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/git/compat/terminal.h b/third_party/git/compat/terminal.h new file mode 100644 index 000000000000..a9d52b8464e2 --- /dev/null +++ b/third_party/git/compat/terminal.h @@ -0,0 +1,9 @@ +#ifndef COMPAT_TERMINAL_H +#define COMPAT_TERMINAL_H + +char *git_terminal_prompt(const char *prompt, int echo); + +/* Read a single keystroke, without echoing it to the terminal */ +int read_key_without_echo(struct strbuf *buf); + +#endif /* COMPAT_TERMINAL_H */ |