ページの改善
いますぐフォークしてオンライン編集し、このページのプルリクエストを送信します。 Github へのログインが必要です。 これは小さな変更に適しています。 大きな変更を加えたい場合は、通常の cloneの使用をお勧めします。
日本語版について
個人的な学習のために、dlang.orgを翻訳したサイトです。 翻訳に際して、様々なサイトを参考にしています。

core.stdc.assert_

D header file for C99.
This module contains bindings to selected types and functions from the standard C header <assert.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)
Standards:
ISO/IEC 9899:1999 (E)
These are the various functions called by the assert() macro. They are all noreturn functions, although D doesn't have a specific attribute for that.
nothrow @nogc @trusted void __assert(const(char)* exp, const(char)* file, uint line);
Assert failure functions in the GLIBC library.
nothrow @nogc @trusted void __assert_fail(const(char)* exp, const(char)* file, uint line, const(char)* func);
nothrow @nogc @trusted void __assert_perror_fail(int errnum, const(char)* file, uint line, const(char)* func);