swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: ac8035a2affdf30f2c691ad760826d955bba0507 authored by Junio C Hamano on 30 August 2022, 17:22:10 UTC
Git 2.37.3
Tip revision: ac8035a
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