swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 20769079d22a9f8010232bdf6131918c33a1bf69 authored by Junio C Hamano on 17 February 2017, 22:00:19 UTC
Git 2.12-rc2
Tip revision: 2076907
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