diff options
author | Jeff King <peff@peff.net> | 2011-12-10 05:40:57 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-12 16:09:38 -0800 |
commit | 1cb0134f3414be187cc3eb98e9740aeeb07dcb16 (patch) | |
tree | 89ad60e8b4e903d7d93c26af177ae5e6df9980ce /prompt.h | |
parent | d3c58b83aee2007ca76dc5d1242c09b6f7989c76 (diff) | |
download | git-1cb0134f3414be187cc3eb98e9740aeeb07dcb16.tar.gz |
refactor git_getpass into generic prompt function
This will allow callers to specify more options (e.g.,
leaving echo on). The original git_getpass becomes a slim
wrapper around the new function.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'prompt.h')
-rw-r--r-- | prompt.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,9 @@ #ifndef PROMPT_H #define PROMPT_H +#define PROMPT_ASKPASS (1<<0) + +char *git_prompt(const char *prompt, int flags); char *git_getpass(const char *prompt); #endif /* PROMPT_H */ |