Revision 9721d2fb10cd81d162248322facdc050433da50f authored by Junio C Hamano on 16 March 2012, 15:23:34 UTC, committed by Junio C Hamano on 16 March 2012, 15:23:35 UTC
* sl/customize-sane-tool-path:
  configure: allow user to prevent $PATH "sanitization" on Solaris
2 parent s 5087aac + 2136394
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);
char *git_getpass(const char *prompt);

#endif /* PROMPT_H */
back to top