Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 441c4a40173fe1ee8a5c0094e587dfc47e2a6460 authored by Junio C Hamano on 04 September 2015, 17:25:47 UTC
Git 2.2.3
Tip revision: 441c4a4
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