diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-08-14 22:04:01 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-08-14 22:04:01 -0700 |
commit | e9f82e0d1d70f361a40f1853c928df04918a38f5 (patch) | |
tree | cdbf94a494dc32833a600e6c86b776b59d646bd7 /sysdeps/x86_64/strncase_l-nonascii.c | |
parent | ca6bb004ebd1cc7da72f1a761ffea377245d1ee9 (diff) | |
download | glibc-e9f82e0d1d70f361a40f1853c928df04918a38f5.tar.gz glibc-e9f82e0d1d70f361a40f1853c928df04918a38f5.tar.xz glibc-e9f82e0d1d70f361a40f1853c928df04918a38f5.zip |
Add optimized strncasecmp versions for x86-64.
Diffstat (limited to 'sysdeps/x86_64/strncase_l-nonascii.c')
-rw-r--r-- | sysdeps/x86_64/strncase_l-nonascii.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdeps/x86_64/strncase_l-nonascii.c b/sysdeps/x86_64/strncase_l-nonascii.c new file mode 100644 index 0000000000..baabd318bf --- /dev/null +++ b/sysdeps/x86_64/strncase_l-nonascii.c @@ -0,0 +1,8 @@ +#include <string.h> + +extern int __strncasecmp_l_nonascii (__const char *__s1, __const char *__s2, + size_t __n, __locale_t __loc); + +#define __strncasecmp_l __strncasecmp_l_nonascii +#define USE_IN_EXTENDED_LOCALE_MODEL 1 +#include <string/strncase.c> |