git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] GSoC 2014 Microproject 1 rewrite skip_prefix() as loop
@ 2014-02-26 16:46 Faiz Kothari
  2014-02-27 11:32 ` Michael Haggerty
  0 siblings, 1 reply; 3+ messages in thread
From: Faiz Kothari @ 2014-02-26 16:46 UTC (permalink / raw)
  To: git; +Cc: Faiz Kothari

Hi,
I am Faiz Kothari, I am a GSoC aspirant and want to contribute to git.
I am submitting the patch in reponse to Microproject 1,
rewrite git-compat-util.h:skip_prefix() as a loop.

Signed-off-by: Faiz Kothari <faiz.off93@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 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.9.0.1.ge8df331

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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-26 16:46 [PATCH] GSoC 2014 Microproject 1 rewrite skip_prefix() as loop Faiz Kothari
2014-02-27 11:32 ` Michael Haggerty
2014-02-27 11:40   ` Faiz Kothari

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