git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rewrite skip_prefix() as loop
@ 2014-02-27 12:02 Faiz Kothari
  2014-02-27 19:34 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Faiz Kothari @ 2014-02-27 12:02 UTC (permalink / raw)
  To: git; +Cc: Faiz Kothari

From: Faiz Kothari <faiz.off93@gmail.com>


Signed-off-by: Faiz Kothari <django@dj-pc.(none)>
---
 git-compat-util.h |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/git-compat-util.h b/git-compat-util.h
index cbd86c3..bb2582a 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -357,8 +357,11 @@ extern int suffixcmp(const char *str, const char *suffix);
 
 static inline const char *skip_prefix(const char *str, const char *prefix)
 {
-	size_t len = strlen(prefix);
-	return strncmp(str, prefix, len) ? NULL : str + len;
+	for (; ; str++, prefix++)
+		if (!*prefix)
+			return str;//code same as strbuf.c:starts_with()
+		else if (*str != *prefix)
+			return NULL;
 }
 
 #if defined(NO_MMAP) || defined(USE_WIN32_MMAP)
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-02-27 19:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-27 12:02 [PATCH] rewrite skip_prefix() as loop Faiz Kothari
2014-02-27 19:34 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).