Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 5f95c9f850b19b368c43ae399cc831b17a26a5ac authored by Junio C Hamano on 14 February 2014, 19:35:04 UTC
Git 1.9.0
Tip revision: 5f95c9f
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