diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-06 22:47:23 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-06 22:47:23 -0500 |
commit | c95b10cff38fabf23a763d1889d024f6dabd4955 (patch) | |
tree | dc014fab60c42ef06c08956773e66f6fa0f83de1 /system/lib/libc/musl/src/string/strcasecmp.c | |
parent | 11a84a636ce9722053cc3100d5c04e30e9f93df2 (diff) | |
parent | 831bb584a91f5409af5df3c44f1bc8dc354ff0d8 (diff) |
Merge pull request #2103 from juj/opt_cmp1.10.2
Add optimized versions of musl libc string and memory comparison functions.
Diffstat (limited to 'system/lib/libc/musl/src/string/strcasecmp.c')
-rw-r--r-- | system/lib/libc/musl/src/string/strcasecmp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/strcasecmp.c b/system/lib/libc/musl/src/string/strcasecmp.c new file mode 100644 index 00000000..02fd5f8c --- /dev/null +++ b/system/lib/libc/musl/src/string/strcasecmp.c @@ -0,0 +1,9 @@ +#include <strings.h> +#include <ctype.h> + +int strcasecmp(const char *_l, const char *_r) +{ + const unsigned char *l=(void *)_l, *r=(void *)_r; + for (; *l && *r && (*l == *r || tolower(*l) == tolower(*r)); l++, r++); + return tolower(*l) - tolower(*r); +} |