mirror of
https://github.com/git-for-windows/git.git
synced 2025-12-13 00:06:03 -06:00
This is currently in connect.c, but really has nothing to do with the git protocol itself. Let's make a new source file all about prompting the user, which will make it cleaner to refactor. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
7 lines
97 B
C
7 lines
97 B
C
#ifndef PROMPT_H
|
|
#define PROMPT_H
|
|
|
|
char *git_getpass(const char *prompt);
|
|
|
|
#endif /* PROMPT_H */
|