https://github.com/git/git
Revision d3fae2a076c42da510f5ee3dfba138fb7da0d151 authored by Rafael Hovhannisyan on 09 July 2014, 23:04:49 UTC, committed by Rafael Hovhannisyan on 09 July 2014, 23:04:49 UTC
1 parent 81e776d
Raw File
Tip revision: d3fae2a076c42da510f5ee3dfba138fb7da0d151 authored by Rafael Hovhannisyan on 09 July 2014, 23:04:49 UTC
Update gettext.c
Tip revision: d3fae2a
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