available at core.sys.posix.string.
See Also
Copyright
D Language Foundation, 2019
License
Standards
The Open Group Base Specifications Issue 7, 2018 edition
Source: core/sys/posix/_strings.d
D header file for POSIX's <strings.h>.
available at core.sys.posix.string.
Source: core/sys/posix/_strings.d
int strcasecmp_l(scope const char * s1, scope const char * s2, scope locale_t locale)Compare two strings ignoring case, with the specified localeint strncasecmp(scope const char * s1, scope const char * s2, size_t n)Compare two strings ignoring case, up to n charactersint strncasecmp_l(scope const char * s1, const char * s2, size_t n, locale_t locale)Compare two strings ignoring case, with the specified locale, up to n characters