Revision 7dd0eaa39c4c9d4d3fa60e4abee8ce379ab2cf9b authored by Junio C Hamano on 24 February 2021, 20:26:41 UTC, committed by Junio C Hamano on 24 February 2021, 23:21:25 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent edaf10d
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