https://github.com/git/git
Raw File
Tip revision: 70fcaef90bad282cf141a7c2e7ae87b13fe0700e authored by Junio C Hamano on 05 May 2017, 03:56:19 UTC
Git 2.6.7
Tip revision: 70fcaef
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