swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 754884255bb580df159e58defa81cdd30b5c430c authored by Junio C Hamano on 04 January 2016, 22:08:04 UTC
Git 2.7
Tip revision: 7548842
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