prompt.h 223 B

123456789101112
  1. #ifndef PROMPT_H
  2. #define PROMPT_H
  3. #define PROMPT_ASKPASS (1<<0)
  4. #define PROMPT_ECHO (1<<1)
  5. char *git_prompt(const char *prompt, int flags);
  6. int git_read_line_interactively(struct strbuf *line);
  7. #endif /* PROMPT_H */