https://github.com/git/git
Raw File
Tip revision: f900c8326a43303685c46b279b9f70411bff1a4b authored by Junio C Hamano on 15 December 2015, 17:47:11 UTC
Git 2.7-rc1
Tip revision: f900c83
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