英語版
このページの英語版を見る
core.stdc.stdio
C99用Dヘッダファイル
このモジュールには、標準Cヘッダーから選択された型と関数へのバインディングが含まれている。
関数へのバインディングが含まれている。 <stdio.h>.注釈: これは自動的に生成されるものではない。
は自動的に生成されたものではなく、元のCヘッダーからいくつかの型や関数が省略されている可能性があることに注意してほしい。
を省略することがある。
License:
Distributed under the
Boost Software License 1.0.
(See accompanying file LICENSE)
Authors:
Sean Kelly,
Alex Rønne Petersen
Standards:
ISO/IEC 9899:1999 (E)
BUFSIZEOFFOPEN_MAXFILENAME_MAXTMP_MAXL_tmpnamSEEK_SET- オフセットは開始位置からの相対値である。
SEEK_CUR- オフセットは現在位置からの相対値である。
SEEK_END- オフセットは終了位置に対する相対値である。
- struct
fpos_t; - struct
_IO_FILE; - alias
_iobuf= _IO_FILE; - alias
FILE= _IO_FILE; _F_RDWR_F_READ_F_WRIT_F_BUF_F_LBUF_F_ERR_F_EOF_F_BIN_F_IN_F_OUT_F_TERM_IOFBF_IOLBF_IONBF- shared FILE*
stdin; - shared FILE*
stdout; - shared FILE*
stderr; - nothrow @nogc int
remove(scope const char*filename); - nothrow @nogc int
rename(scope const char*from, scope const char*to); - nothrow @nogc @trusted FILE*
tmpfile(); - nothrow @nogc char*
tmpnam(char*s); - nothrow @nogc int
fclose(FILE*stream); - nothrow @nogc @trusted int
fflush(FILE*stream); - nothrow @nogc FILE*
fopen(scope const char*filename, scope const char*mode); - nothrow @nogc FILE*
freopen(scope const char*filename, scope const char*mode, FILE*stream); - nothrow @nogc void
setbuf(FILE*stream, char*buf); - nothrow @nogc int
setvbuf(FILE*stream, char*buf, intmode, size_tsize); - nothrow @nogc int
fprintf(FILE*stream, scope const char*format, ...); - nothrow @nogc int
__isoc99_fscanf(FILE*stream, scope const char*format, ...); - alias
fscanf= __isoc99_fscanf; - nothrow @nogc int
sprintf(scope char*s, scope const char*format, ...); - nothrow @nogc int
__isoc99_sscanf(scope const char*s, scope const char*format, ...); - alias
sscanf= __isoc99_sscanf; - nothrow @nogc int
vfprintf(FILE*stream, scope const char*format, va_listarg); - nothrow @nogc int
__isoc99_vfscanf(FILE*stream, scope const char*format, va_listarg); - alias
vfscanf= __isoc99_vfscanf; - nothrow @nogc int
vsprintf(scope char*s, scope const char*format, va_listarg); - nothrow @nogc int
__isoc99_vsscanf(scope const char*s, scope const char*format, va_listarg); - alias
vsscanf= __isoc99_vsscanf; - nothrow @nogc int
vprintf(scope const char*format, va_listarg); - nothrow @nogc int
__isoc99_vscanf(scope const char*format, va_listarg); - alias
vscanf= __isoc99_vscanf; - nothrow @nogc int
printf(scope const char*format, ...); - nothrow @nogc int
__isoc99_scanf(scope const char*format, ...); - alias
scanf= __isoc99_scanf; - nothrow @nogc @trusted int
fgetc(FILE*stream); - nothrow @nogc @trusted int
fputc(intc, FILE*stream); - nothrow @nogc char*
fgets(char*s, intn, FILE*stream); - nothrow @nogc int
fputs(scope const char*s, FILE*stream); - nothrow @nogc char*
gets(char*s); - nothrow @nogc int
puts(scope const char*s); - int
getchar()(); - int
putchar()(intc); - alias
getc= fgetc; - alias
putc= fputc; - nothrow @nogc @trusted int
ungetc(intc, FILE*stream); - nothrow @nogc size_t
fread(scope void*ptr, size_tsize, size_tnmemb, FILE*stream); - nothrow @nogc size_t
fwrite(scope const void*ptr, size_tsize, size_tnmemb, FILE*stream); - nothrow @nogc @trusted int
fgetpos(FILE*stream, scope fpos_t*pos); - nothrow @nogc @trusted int
fsetpos(FILE*stream, scope const fpos_t*pos); - nothrow @nogc @trusted int
fseek(FILE*stream, c_longoffset, intwhence); - nothrow @nogc @trusted c_long
ftell(FILE*stream); - nothrow @nogc @trusted void
rewind(FILE*stream); - pure nothrow @nogc @trusted void
clearerr(FILE*stream); - pure nothrow @nogc @trusted int
feof(FILE*stream); - pure nothrow @nogc @trusted int
ferror(FILE*stream); - nothrow @nogc @trusted int
fileno(FILE*); - nothrow @nogc int
snprintf(scope char*s, size_tn, scope const char*format, ...); - nothrow @nogc int
vsnprintf(scope char*s, size_tn, scope const char*format, va_listarg); - nothrow @nogc int
fputc_unlocked(intc, _iobuf*stream); - nothrow @nogc int
fgetc_unlocked(_iobuf*stream); - nothrow @nogc wint_t
fputwc_unlocked(wchar_twc, _iobuf*stream); - nothrow @nogc wint_t
fgetwc_unlocked(_iobuf*stream); - nothrow @nogc void
perror(scope const char*s);
Copyright © 1999-2025 by the D Language Foundation
DEEPL APIにより翻訳、ところどころ修正。
このページの最新版(英語)
このページの原文(英語)
翻訳時のdmdのバージョン: 2.108.0
サイト全体のドキュメントのdmdのバージョン: 2.109.1
最新のdmdのバージョン: 2.111.0 ダウンロード
翻訳日付:
HTML生成日時:
編集者: dokutoku