swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 656d9a24f624039831bc2e865f4cc42f393caf70 authored by Johannes Schindelin on 23 June 2022, 10:35:32 UTC
Git 2.32.3
Tip revision: 656d9a2
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