terminal.h 256 B

12345678910
  1. #ifndef COMPAT_TERMINAL_H
  2. #define COMPAT_TERMINAL_H
  3. char *git_terminal_prompt(const char *prompt, int echo);
  4. /* Read a single keystroke, without echoing it to the terminal */
  5. int read_key_without_echo(struct strbuf *buf);
  6. #endif /* COMPAT_TERMINAL_H */