swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 7397ca33730626f682845f8691b39c305535611e authored by Jonathan Nieder on 19 April 2020, 23:31:07 UTC
Git 2.25.4
Tip revision: 7397ca3
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