https://github.com/git/git
Raw File
Tip revision: bdfc6b364a51b19efbacbd46fcef5be41a5db50e authored by Junio C Hamano on 08 December 2015, 22:07:30 UTC
Git 2.6.4
Tip revision: bdfc6b3
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