diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 14:31:31 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 14:31:31 -0500 |
| commit | ae9f7ec577e7a8cfd474d7772eb31afd487ff099 (patch) | |
| tree | df9780238fc2e8227cc8d65e7b30e8dd28b66a16 /src/strings/strcasecmp.c | |
| parent | dd20f8f7ca634d375c54c1f9d27a19bc8ca4f5e1 (diff) | |
merge XOPEN identifiers
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) +*/ |
