blob: 04f321a781d37af780b906c2a4564c08eea830c8 [file] [log] [blame]
Jeff Kingd3c58b82011-12-10 05:40:54 -05001#ifndef PROMPT_H
2#define PROMPT_H
3
Jeff King1cb01342011-12-10 05:40:57 -05004#define PROMPT_ASKPASS (1<<0)
Jeff Kinga5090252011-12-10 05:41:08 -05005#define PROMPT_ECHO (1<<1)
Jeff King1cb01342011-12-10 05:40:57 -05006
7char *git_prompt(const char *prompt, int flags);
Jeff Kingd3c58b82011-12-10 05:40:54 -05008char *git_getpass(const char *prompt);
9
10#endif /* PROMPT_H */