https://github.com/git/git
Raw File
Tip revision: 8d7f72f176ea133c16e55f386a0b79a1cd46ff69 authored by Junio C Hamano on 30 July 2017, 21:49:08 UTC
Git 2.8.6
Tip revision: 8d7f72f
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