Revision 0dc9cad22d5c878d2ce6ee7b5cfffb034e34b2a0 authored by Junio C Hamano on 31 May 2024, 00:00:29 UTC, committed by Junio C Hamano on 31 May 2024, 00:00:29 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parent s f20b96a + dbecc61
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