Revision 2cc2e70264e0fcba04f9ef791d144bbc8b501206 authored by Junio C Hamano on 26 October 2016, 20:28:47 UTC, committed by Junio C Hamano on 26 October 2016, 20:28:47 UTC
There still are a few topics that need to go in before -rc0 which
would make the shape of the upcoming release clearer, but here is
the final batch before it happens.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3b1e135
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