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/strncasecmp.c | |
| parent | dd20f8f7ca634d375c54c1f9d27a19bc8ca4f5e1 (diff) | |
merge XOPEN identifiers
Diffstat (limited to 'src/strings/strncasecmp.c')
| -rw-r--r-- | src/strings/strncasecmp.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/strings/strncasecmp.c b/src/strings/strncasecmp.c new file mode 100644 index 00000000..8094ccd2 --- /dev/null +++ b/src/strings/strncasecmp.c @@ -0,0 +1,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) +*/ |
