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
|
|
|
char *git_getpass(const char *prompt);
|
|
|
|
|
|
|
|
#endif /* PROMPT_H */
|