https://github.com/git/git
Raw File
Tip revision: 17a02783d8f7cac1780d8035f3e2e0d25bba077b authored by Junio C Hamano on 17 March 2020, 21:33:34 UTC
Git 2.23.2
Tip revision: 17a0278
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);

#endif /* PROMPT_H */
back to top