Staging
v0.5.1
Revision bddcefc6380bd6629f3f12b5ffd856ec436c6abd authored by Junio C Hamano on 18 January 2012, 23:53:35 UTC, committed by Junio C Hamano on 18 January 2012, 23:53:35 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 6e06367
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