Revision 2ab56603bffb7aed6ec6d2a36deddfdf49cfd5ad authored by Stefan Beller on 30 March 2016, 01:27:46 UTC, committed by Junio C Hamano on 30 March 2016, 20:09:57 UTC
Not everyone (including me) grasps the sed expression in a split second as
they would grasp the 4 lines printed as is.

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c1e06d1
Raw File
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