License
Distributed under the
Boost Software License 1.0.
(See accompanying file LICENSE)
Standards
ISO/IEC 9899:1999 (E)
D header file for C99 <stdio.h>
(See accompanying file LICENSE)
int remove(scope const char * filename)int rename(scope const char * from, scope const char * to)char * tmpnam(char * s)int fclose(FILE * stream)int fflush(FILE * stream)FILE * fopen(scope const char * filename, scope const char * mode)FILE * freopen(scope const char * filename, scope const char * mode, FILE * stream)void setbuf(FILE * stream, char * buf)int setvbuf(FILE * stream, char * buf, int mode, size_t size)int fgetc(FILE * stream)int fputc(int c, FILE * stream)char * fgets(char * s, int n, FILE * stream)int fputs(scope const char * s, FILE * stream)char * gets(char * s)int puts(scope const char * s)int getchar()()int putchar()(int c)size_t fread(scope void * ptr, size_t size, size_t nmemb, FILE * stream)size_t fwrite(scope const void * ptr, size_t size, size_t nmemb, FILE * stream)int fgetpos(FILE * stream, scope fpos_t * pos)int fsetpos(FILE * stream, scope const fpos_t * pos)int fseek(FILE * stream, c_long offset, int whence)c_long ftell(FILE * stream)void perror(scope const char * s)