swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: a46034819ecce6872bff099f3d75589f4d38c00c authored by Junio C Hamano on 12 March 2012, 22:52:52 UTC
Git 1.7.9.4
Tip revision: a460348
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