swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 6c85aac65fb455af85745130ce35ddae4678db84 authored by Junio C Hamano on 16 March 2020, 19:46:32 UTC
Git 2.26-rc2
Tip revision: 6c85aac
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