英語版
このページの英語版を見る

core.sys.posix.strings

POSIXの

注釈: このモジュールを (単数形) と間違えないこと、 core.sys.posix.string で入手できる。

Authors:
Mathias 'Geod24' Lang
Standards:
オープングループ基本仕様書 第7号 2018年版
public import core.sys.posix.locale : locale_t;
pure nothrow @nogc @safe int ffs(int i);
ワードの最初のビットを見つける
nothrow @nogc int strcasecmp(scope const char* s1, scope const char* s2);
大文字と小文字を無視して2つの文字列を比較する
nothrow @nogc int strcasecmp_l(scope const char* s1, scope const char* s2, scope locale_t locale);
指定されたロケールで、大文字小文字を無視して2つの文字列を比較する
nothrow @nogc int strncasecmp(scope const char* s1, scope const char* s2, size_t n);
大文字小文字を無視した2つの文字列をn文字まで比較する
nothrow @nogc int strncasecmp_l(scope const char* s1, const char* s2, size_t n, locale_t locale);
大文字小文字を無視した2つの文字列を、指定されたロケールでn文字まで比較する