https://github.com/git/git
Raw File
Tip revision: c6c75c93aaeb97bab6fd25b672a641c84dd85d59 authored by Junio C Hamano on 11 January 2018, 21:20:41 UTC
Git 2.16-rc2
Tip revision: c6c75c9
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