Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: e15c16de396a1e1f42001b03cb885ce64eb4098e authored by Junio C Hamano on 07 August 2012, 17:39:34 UTC
Git 1.7.12-rc2
Tip revision: e15c16d
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