https://github.com/git/git
Raw File
Tip revision: 3b827444811d7eddeddd44850f5dbbb4d59747f5 authored by Junio C Hamano on 30 July 2017, 22:02:37 UTC
Git 2.11.3
Tip revision: 3b82744
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