Staging
v0.5.1
Revision befc5ed3799cb6fcbaa7de03e7fa1760e846853c authored by Junio C Hamano on 25 May 2012, 19:19:45 UTC, committed by Junio C Hamano on 25 May 2012, 19:19:45 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 4acf8e8
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