diff options
Diffstat (limited to 'src/strings/strcasecmp.c')
| -rw-r--r-- | src/strings/strcasecmp.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/strings/strcasecmp.c b/src/strings/strcasecmp.c new file mode 100644 index 00000000..e9006fe2 --- /dev/null +++ b/src/strings/strcasecmp.c @@ -0,0 +1,11 @@ +#include <strings.h> + +int strcasecmp(const char *s1, const char *s2) +{ + return strcasecmp_l (s1, s2, (locale_t)0); +} + +/* +XOPEN(400) +POSIX(200809) +*/ |
