Staging
v0.5.1
Revision 64948ad77534f035311fd3e1086477661c8f63b1 authored by Junio C Hamano on 08 August 2013, 20:58:34 UTC, committed by Junio C Hamano on 08 August 2013, 21:03:21 UTC
This is with mostly minor documentation and test updates, nothing
spectacular except for removal of funky lstat(2) emulation on Cygwin.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent fb56570
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