diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2014-02-06 17:07:04 -0500 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2014-02-06 17:07:04 -0500 |
commit | a2f95d50985660324812286771dbfdcf7da638a4 (patch) | |
tree | a7270fa2095c5a794f4dc4d07a549c0a25a30e77 /system/lib/libc/musl/src/string/strncmp.c | |
parent | 51d39aaa3dda0a7f433fa38c365f86011b5fe84c (diff) |
Add optimized versions of musl libc string and memory comparison functions.
Diffstat (limited to 'system/lib/libc/musl/src/string/strncmp.c')
-rw-r--r-- | system/lib/libc/musl/src/string/strncmp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/strncmp.c b/system/lib/libc/musl/src/string/strncmp.c new file mode 100644 index 00000000..e228843f --- /dev/null +++ b/system/lib/libc/musl/src/string/strncmp.c @@ -0,0 +1,9 @@ +#include <string.h> + +int strncmp(const char *_l, const char *_r, size_t n) +{ + const unsigned char *l=(void *)_l, *r=(void *)_r; + if (!n--) return 0; + for (; *l && *r && n && *l == *r ; l++, r++, n--); + return *l - *r; +} |