Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 9a8c2b67cd5a51666f2c0ce3fbbdb08b97b79b3d authored by Junio C Hamano on 17 December 2014, 19:30:46 UTC
Git 2.0.5
Tip revision: 9a8c2b6
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