Staging
v0.5.1
Revision 47ae905ffb98cc4d4fd90083da6bc8dab55d9ecc authored by Junio C Hamano on 27 July 2020, 01:01:43 UTC, committed by Junio C Hamano on 27 July 2020, 01:01:43 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 5c06d60
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);

int git_read_line_interactively(struct strbuf *line);

#endif /* PROMPT_H */
back to top