Staging
v0.5.1
https://github.com/git/git
Revision 52735a689270bb1de94eb3de198594b36caed9bb authored by Junio C Hamano on 31 March 2015, 21:57:10 UTC, committed by Junio C Hamano on 31 March 2015, 21:57:10 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ad00aeb
Raw File
Tip revision: 52735a689270bb1de94eb3de198594b36caed9bb authored by Junio C Hamano on 31 March 2015, 21:57:10 UTC
Git 2.3.5
Tip revision: 52735a6
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 */
back to top