Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 773e3a2e0226cffac6c813c2d3bea5ba480675d8 authored by Junio C Hamano on 05 May 2017, 04:29:43 UTC
Git 2.11.2
Tip revision: 773e3a2
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