https://github.com/git/git
Raw File
Tip revision: e5056c05ecd2bdaceaa95e12e9e94b1584ec59c8 authored by Junio C Hamano on 03 April 2012, 16:25:49 UTC
Git 1.7.10-rc4
Tip revision: e5056c0
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