diff options
author | René Scharfe <l.s.r@web.de> | 2014-07-28 20:29:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-08-26 20:06:05 +0200 |
commit | aa14e980fff55e090dd42174ab4f37fe4b3dfa1e (patch) | |
tree | 0c90fa06f1001c96c3cd6c83579fa81850d5e928 /wrapper.c | |
parent | abspath: convert real_path_internal() to strbuf (diff) | |
download | git-aa14e980fff55e090dd42174ab4f37fe4b3dfa1e.tar.xz git-aa14e980fff55e090dd42174ab4f37fe4b3dfa1e.zip |
wrapper: add xgetcwd()
Add the helper function xgetcwd(), which returns the current directory
or dies. The returned string has to be free()d after use.
Helped-by: Duy Nguyen <pclouds@gmail.com>
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | wrapper.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -493,3 +493,11 @@ struct passwd *xgetpwuid_self(void) errno ? strerror(errno) : _("no such user")); return pw; } + +char *xgetcwd(void) +{ + struct strbuf sb = STRBUF_INIT; + if (strbuf_getcwd(&sb)) + die_errno(_("unable to get current working directory")); + return strbuf_detach(&sb, NULL); +} |