2020-01-12 00:36:56 +01:00
|
|
|
#ifndef PROMPT_H
|
|
|
|
#define PROMPT_H
|
|
|
|
|
|
|
|
#define PROMPT_ASKPASS (1<<0)
|
|
|
|
#define PROMPT_ECHO (1<<1)
|
|
|
|
|
|
|
|
char *git_prompt(const char *prompt, int flags);
|
|
|
|
|
2020-11-21 19:20:35 +01:00
|
|
|
int git_read_line_interactively(struct strbuf *line);
|
|
|
|
|
2020-01-12 00:36:56 +01:00
|
|
|
#endif /* PROMPT_H */
|