Revision 2ff14e31bd8c91356d54b7bac064e7cc615e56b3 authored by Adrian Weimann on 30 January 2012, 19:29:33 UTC, committed by Junio C Hamano on 06 February 2012, 08:00:54 UTC
Signed-off-by: Adrian Weimann <adrian.weimann@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent f2120eb
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