1#ifndef PROMPT_H 2#define PROMPT_H 3 4#define PROMPT_ASKPASS (1<<0) 5#define PROMPT_ECHO (1<<1) 6 7char *git_prompt(const char *prompt, int flags); 8char *git_getpass(const char *prompt); 9 10#endif /* PROMPT_H */
#ifndef PROMPT_H
#define PROMPT_H
#define PROMPT_ASKPASS (1<<0)
#define PROMPT_ECHO (1<<1)
char *git_prompt(const char *prompt, int flags);
char *git_getpass(const char *prompt);
#endif /* PROMPT_H */