Revision 07586ebd4fd2ba273a1dae60403aa5affc352e29 authored by Michael J Gruber on 26 January 2015, 15:34:32 UTC, committed by Ralf Thielow on 26 January 2015, 18:36:04 UTC
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
1 parent 2f334c6
Raw File
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