Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: da72936f544fec5a335e66432610e4cef4430991 authored by Junio C Hamano on 04 November 2019, 04:32:41 UTC
Git 2.24
Tip revision: da72936
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