summaryrefslogtreecommitdiff
path: root/strbuf.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2017-03-02 08:21:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-03-02 19:05:04 (GMT)
commit0705fe202dd30009e2033e96a17cb12299bf5ab3 (patch)
tree25e7b05382ad6d4121fd4b3827dfc7cbe3158dab /strbuf.h
parent311fc74826ac91cd6f6ea932460f88c475bbb310 (diff)
downloadgit-0705fe202dd30009e2033e96a17cb12299bf5ab3.zip
git-0705fe202dd30009e2033e96a17cb12299bf5ab3.tar.gz
git-0705fe202dd30009e2033e96a17cb12299bf5ab3.tar.bz2
strbuf_branchname: add docstring
This function and its companion, strbuf_check_branch_ref(), did not have their purpose or semantics explained. Let's do so. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.h')
-rw-r--r--strbuf.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/strbuf.h b/strbuf.h
index 3bcde39..2c40f1f 100644
--- a/strbuf.h
+++ b/strbuf.h
@@ -562,7 +562,22 @@ static inline void strbuf_complete_line(struct strbuf *sb)
strbuf_complete(sb, '\n');
}
+/*
+ * Copy "name" to "sb", expanding any special @-marks as handled by
+ * interpret_branch_name(). The result is a non-qualified branch name
+ * (so "foo" or "origin/master" instead of "refs/heads/foo" or
+ * "refs/remotes/origin/master").
+ *
+ * Note that the resulting name may not be a syntactically valid refname.
+ */
extern void strbuf_branchname(struct strbuf *sb, const char *name);
+
+/*
+ * Like strbuf_branchname() above, but confirm that the result is
+ * syntactically valid to be used as a local branch name in refs/heads/.
+ *
+ * The return value is "0" if the result is valid, and "-1" otherwise.
+ */
extern int strbuf_check_branch_ref(struct strbuf *sb, const char *name);
extern void strbuf_addstr_urlencode(struct strbuf *, const char *,