https://github.com/git/git
Raw File
Tip revision: ecf9b4a443ecd2c7dc759e5d18f226694bc3eced authored by Taylor Blau on 30 September 2022, 20:56:02 UTC
Git 2.31.5
Tip revision: ecf9b4a
terminal.h
#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 */
back to top