ページの改善
いますぐフォークしてオンライン編集し、このページのプルリクエストを送信します。
Github へのログインが必要です。 これは小さな変更に適しています。
大きな変更を加えたい場合は、通常の cloneの使用をお勧めします。
日本語版について
個人的な学習のために、dlang.orgを翻訳したサイトです。
翻訳に際して、様々なサイトを参考にしています。
core.stdc.string
D header file for C99.
This module contains bindings to selected types and
functions from the standard C header <string.h>. Note that this
is not automatically generated, and may omit some types/functions from the
original C header.
License:
Distributed under the
Boost Software License 1.0.
(See accompanying file LICENSE)
Authors:
Sean Kelly
Source core/stdc/string.d
Standards:
ISO/IEC 9899:1999 (E)
- pure nothrow @nogc @system inout(void)*
memchr
(return scope inout void*s
, intc
, size_tn
); - pure nothrow @nogc @system int
memcmp
(scope const void*s1
, scope const void*s2
, size_tn
); - pure nothrow @nogc @system void*
memcpy
(return scope void*s1
, scope const void*s2
, size_tn
); - pure nothrow @nogc @system void*
memmove
(return scope void*s1
, scope const void*s2
, size_tn
); - pure nothrow @nogc @system void*
memset
(return scope void*s
, intc
, size_tn
); - pure nothrow @nogc @system char*
strcat
(return scope char*s1
, scope const char*s2
); - pure nothrow @nogc @system inout(char)*
strchr
(return scope inout(char)*s
, intc
); - pure nothrow @nogc @system int
strcmp
(scope const char*s1
, scope const char*s2
); - nothrow @nogc @system int
strcoll
(scope const char*s1
, scope const char*s2
); - pure nothrow @nogc @system char*
strcpy
(return scope char*s1
, scope const char*s2
); - pure nothrow @nogc @system size_t
strcspn
(scope const char*s1
, scope const char*s2
); - nothrow @nogc @system char*
strdup
(scope const char*s
); - nothrow @nogc @system char*
strerror
(interrnum
); - nothrow @nogc @system const(char)*
strerror_r
(interrnum
, return scope char*buf
, size_tbuflen
); - pure nothrow @nogc @system size_t
strlen
(scope const char*s
); - pure nothrow @nogc @system char*
strncat
(return scope char*s1
, scope const char*s2
, size_tn
); - pure nothrow @nogc @system int
strncmp
(scope const char*s1
, scope const char*s2
, size_tn
); - pure nothrow @nogc @system char*
strncpy
(return scope char*s1
, scope const char*s2
, size_tn
); - pure nothrow @nogc @system inout(char)*
strpbrk
(return scope inout(char)*s1
, scope const char*s2
); - pure nothrow @nogc @system inout(char)*
strrchr
(return scope inout(char)*s
, intc
); - pure nothrow @nogc @system size_t
strspn
(scope const char*s1
, scope const char*s2
); - pure nothrow @nogc @system inout(char)*
strstr
(return scope inout(char)*s1
, scope const char*s2
); - nothrow @nogc @system char*
strtok
(return scope char*s1
, scope const char*s2
); - nothrow @nogc @system size_t
strxfrm
(scope char*s1
, scope const char*s2
, size_tn
);
Copyright © 1999-2022 by the D Language Foundation | Page generated by
Ddoc on Wed Nov 23 08:32:06 2022