Staging
v0.5.1
Revision 898f80736c75878acc02dc55672317fcc0e0a5a6 authored by Junio C Hamano on 29 October 2020, 21:24:09 UTC, committed by Junio C Hamano on 29 October 2020, 21:24:09 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a94bce6
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