https://github.com/git/git
Raw File
Tip revision: 085f5f95a2723e8f9f4d037c01db5b786355ba49 authored by Junio C Hamano on 21 March 2018, 19:02:04 UTC
Git 2.17-rc1
Tip revision: 085f5f9
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