https://github.com/git/git
Raw File
Tip revision: 67b0a24910fbb23c8f5e7a2c61c339818bc68296 authored by Junio C Hamano on 18 March 2020, 01:12:01 UTC
Git 2.25.3
Tip revision: 67b0a24
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