Revision e6c1c391a86302a53e0eab44dc5bb597c96a87fb authored by Ralf Thielow on 20 November 2014, 06:15:15 UTC, committed by Ralf Thielow on 20 November 2014, 06:16:18 UTC
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
1 parent 388a439
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