Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: bb3e7b1a5505bae590b0d85a3995a61d6dd82547 authored by Junio C Hamano on 15 July 2015, 18:45:42 UTC
Git 2.4.6
Tip revision: bb3e7b1
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