https://github.com/git/git
Raw File
Tip revision: cae598d9980661a978e2df4fb338518f7bf09572 authored by Junio C Hamano on 27 September 2018, 18:52:33 UTC
Git 2.19.1
Tip revision: cae598d
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