Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: e156455ea49124c140a67623f22a393db62d5d98 authored by Junio C Hamano on 28 May 2014, 18:04:19 UTC
Git 2.0
Tip revision: e156455
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