summaryrefslogtreecommitdiff
path: root/src/strings/strncasecmp.c
blob: 8094ccd2d2e39b4367c36d0d2295735a5863ec68 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <strings.h>

int strncasecmp(const char *s1, const char *s2, size_t n)
{
  return strncasecmp_l (s1, s2, n, (locale_t)0);
}

/*
XOPEN(400)
POSIX(200809)
*/