diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-07-02 21:38:54 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-07-02 21:38:54 -0400 |
commit | 7424ac58b1f47adb03de55de5998c530aee91551 (patch) | |
tree | 4ea62b1dddc54fe2c901049c1914483c6265e6a0 /src/locale/strncasecmp_l.c | |
parent | d89fdec51b5849ebdf8000ff1c2fb49878004f39 (diff) | |
download | musl-7424ac58b1f47adb03de55de5998c530aee91551.tar.gz musl-7424ac58b1f47adb03de55de5998c530aee91551.tar.xz musl-7424ac58b1f47adb03de55de5998c530aee91551.zip |
consolidate str[n]casecmp_l into str[n]casecmp source files
this is mainly done for consistency with the ctype functions and to declutter the src/locale directory.
Diffstat (limited to 'src/locale/strncasecmp_l.c')
-rw-r--r-- | src/locale/strncasecmp_l.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/locale/strncasecmp_l.c b/src/locale/strncasecmp_l.c deleted file mode 100644 index af33ada6..00000000 --- a/src/locale/strncasecmp_l.c +++ /dev/null @@ -1,7 +0,0 @@ -#include <strings.h> -#include <locale.h> - -int strncasecmp_l(const char *l, const char *r, size_t n, locale_t loc) -{ - return strncasecmp(l, r, n); -} |