Staging
v0.5.1
Revision af6d1d602a8f64164b266364339c4e936d5bbc33 authored by Junio C Hamano on 12 October 2021, 20:51:59 UTC, committed by Junio C Hamano on 12 October 2021, 20:51:59 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9e25a2e
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