🌐 AI搜索 & 代理 主页
blob: e294e93541cfa0749cfb60fdceac2ebd3f41751d [file] [log] [blame]
Jeff Kingd3c58b82011-12-10 10:40:541#ifndef PROMPT_H
2#define PROMPT_H
3
Jeff King1cb01342011-12-10 10:40:574#define PROMPT_ASKPASS (1<<0)
Jeff Kinga5090252011-12-10 10:41:085#define PROMPT_ECHO (1<<1)
Jeff King1cb01342011-12-10 10:40:576
7char *git_prompt(const char *prompt, int flags);
Jeff Kingd3c58b82011-12-10 10:40:548
Johannes Schindelin08d383f2020-04-10 11:27:509int git_read_line_interactively(struct strbuf *line);
10
Jeff Kingd3c58b82011-12-10 10:40:5411#endif /* PROMPT_H */