summaryrefslogtreecommitdiff
path: root/prompt.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-12-10 10:40:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-12-13 00:09:38 (GMT)
commitd3c58b83aee2007ca76dc5d1242c09b6f7989c76 (patch)
tree29e79755987e0670a8258992c3a5cd504a445f9e /prompt.h
parent6c597aeba1e0fc369e64b1033515b0e39544cbe1 (diff)
downloadgit-d3c58b83aee2007ca76dc5d1242c09b6f7989c76.zip
git-d3c58b83aee2007ca76dc5d1242c09b6f7989c76.tar.gz
git-d3c58b83aee2007ca76dc5d1242c09b6f7989c76.tar.bz2
move git_getpass to its own source file
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>
Diffstat (limited to 'prompt.h')
-rw-r--r--prompt.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/prompt.h b/prompt.h
new file mode 100644
index 0000000..0fd7bd9
--- /dev/null
+++ b/prompt.h
@@ -0,0 +1,6 @@
+#ifndef PROMPT_H
+#define PROMPT_H
+
+char *git_getpass(const char *prompt);
+
+#endif /* PROMPT_H */