core.sys.posix.strings

D header file for POSIX's <strings.h>.

Note

Do not mistake this module for <string.h> (singular),

available at core.sys.posix.string.

See Also

Functions 5

fnint ffs(int i) @safe pure;Find first bit set in a word
fnint strcasecmp(scope const char * s1, scope const char * s2)Compare two strings ignoring case
fnint strcasecmp_l(scope const char * s1, scope const char * s2, scope locale_t locale)Compare two strings ignoring case, with the specified locale
fnint strncasecmp(scope const char * s1, scope const char * s2, size_t n)Compare two strings ignoring case, up to n characters
fnint 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