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

int strcasecmp(const char *s1, const char *s2)
{
  return strcasecmp_l (s1, s2, (locale_t)0);
}

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