git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][GSoC] git-compat-util.h:rewrite skip_prefix() as loop
@ 2014-03-01 22:42 kgeorgiou
  2014-03-02  4:53 ` Eric Sunshine
  0 siblings, 1 reply; 2+ messages in thread
From: kgeorgiou @ 2014-03-01 22:42 UTC (permalink / raw)
  To: git; +Cc: kgeorgiou

Rewritten git-compat-util.h:skip_prefix() as a loop, so that it doesn't have to
scan through the prefix string twice as a miniproject for GSoC 2014.

(I've just noticed that this miniproject has already been tackled by another 
contributor, if that's a problem I can pick something else.)

Looking forward to any kind of feedback.

- Kyriakos Georgiou

Signed-off-by: kgeorgiou <kyriakos.a.georgiou@gmail.com>
---
 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 614a5e9..713f37a 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;
+	while(*prefix && *str == *prefix) {
+		str++;
+		prefix++;
+	}
+	return *prefix ? NULL : str;
 }
 
 #if defined(NO_MMAP) || defined(USE_WIN32_MMAP)
-- 
1.8.3.2

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

end of thread, other threads:[~2014-03-02  4:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-01 22:42 [PATCH][GSoC] git-compat-util.h:rewrite skip_prefix() as loop kgeorgiou
2014-03-02  4:53 ` Eric Sunshine

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).