https://github.com/git/git
Raw File
Tip revision: f3500825257b441134bd99b08bab3b6fd1cb4f51 authored by Junio C Hamano on 07 February 2013, 23:21:10 UTC
Git 1.8.1.3
Tip revision: f350082
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