Staging
v0.5.1
Revision ed9fe755130891fc878bb2433204faffb534697b authored by Junio C Hamano on 26 November 2012, 02:40:34 UTC, committed by Junio C Hamano on 26 November 2012, 02:40:34 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 5956732
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