2011-12-10 11:40:54 +01:00
|
|
|
#ifndef PROMPT_H
|
|
|
|
#define PROMPT_H
|
|
|
|
|
2011-12-10 11:40:57 +01:00
|
|
|
#define PROMPT_ASKPASS (1<<0)
|
2011-12-10 11:41:08 +01:00
|
|
|
#define PROMPT_ECHO (1<<1)
|
2011-12-10 11:40:57 +01:00
|
|
|
|
|
|
|
char *git_prompt(const char *prompt, int flags);
|
2011-12-10 11:40:54 +01:00
|
|
|
|
2020-04-10 13:27:50 +02:00
|
|
|
int git_read_line_interactively(struct strbuf *line);
|
|
|
|
|
2011-12-10 11:40:54 +01:00
|
|
|
#endif /* PROMPT_H */
|