chadlibc icon indicating copy to clipboard operation
chadlibc copied to clipboard

stdio.h

Open d0p1s4m4 opened this issue 3 years ago • 0 comments

types

  • [ ] FILE
  • [ ] fpos_t

Macro

  • [ ] _IOFBF
  • [ ] _IOLBF
  • [ ] _IONBF
  • [ ] BUFSIZ
  • [ ] EOF
  • [ ] FOPEN_MAX
  • [ ] FILENAME_MAX
  • [ ] L_tmpnam
  • [ ] SEEK_CUR
  • [ ] SEEK_END
  • [ ] SEEK_SET
  • [ ] TMP_MAX
  • [ ] stderr
  • [ ] stdin
  • [ ] stdout

Operations on files

  • [ ] remove
  • [ ] rename
  • [ ] tmpfile
  • [ ] tmpnam

File access functions

  • [ ] fclose
  • [ ] fflush
  • [ ] fopen
  • [ ] freopen
  • [ ] setbuf
  • [ ] setvbuf

Formatted intput/output functions

  • [ ] fprintf
  • [ ] fscanf
  • [ ] printf
  • [ ] scanf
  • [ ] sprintf
  • [ ] sscanf
  • [ ] vfprintf
  • [ ] vprintf
  • [ ] vsprintf
  • [ ] fgetc
  • [ ] fgets
  • [ ] fputc
  • [ ] fputs
  • [ ] getc
  • [ ] getchar
  • [ ] gets
  • [ ] putc
  • [ ] putchar
  • [ ] puts
  • [ ] ungetc

Direct input/output functions

  • [ ] fread
  • [ ] fwrite
  • [ ] fgetpos
  • [ ] fseek
  • [ ] fsetpos
  • [ ] ftell
  • [ ] rewind

Error-handling functions

  • [ ] clearerr
  • [ ] feof
  • [ ] ferror
  • [ ] perror

d0p1s4m4 avatar Jul 22 '21 10:07 d0p1s4m4