diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-01-03 10:23:12 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-03 10:23:12 +0100 |
commit | 698a68be7b0df6dd8d0880e0e2167cad8688a6ad (patch) | |
tree | 8cb9dc608f12b52288524e4f20c59faa1d131157 /strbuf.c | |
parent | Update callers of check_ref_format() (diff) | |
download | git-698a68be7b0df6dd8d0880e0e2167cad8688a6ad.tar.xz git-698a68be7b0df6dd8d0880e0e2167cad8688a6ad.zip |
Uninline prefixcmp()
Now the routine is an open-coded loop that avoids an extra
strlen() in the previous implementation, it got a bit too big to
be inlined. Uninlining it makes code footprint smaller but the
result still retains the avoidance of strlen() cost.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.c')
-rw-r--r-- | strbuf.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,14 @@ #include "cache.h" +int prefixcmp(const char *str, const char *prefix) +{ + for (; ; str++, prefix++) + if (!*prefix) + return 0; + else if (*str != *prefix) + return (unsigned char)*prefix - (unsigned char)*str; +} + /* * Used as the default ->buf value, so that people can always assume * buf is non NULL and ->buf is NUL terminated even for a freshly |