+
Point of view
All features
deferred class STDIO_EXTERNALS
Features
{}
- asprintf (a_ptr: POINTER, a_fmt: POINTER): INTEGER_32
- clearerr (a_stream: POINTER)
- clearerr_unlocked (a_stream: POINTER)
- ctermid (a_s: POINTER): POINTER
- cuserid (a_s: POINTER): POINTER
- dprintf (a_fd: INTEGER_32, a_fmt: POINTER): INTEGER_32
- fclose (a_stream: POINTER): INTEGER_32
- fcloseall: INTEGER_32
- fdopen (a_fd: INTEGER_32, a_modes: POINTER): POINTER
- feof (a_stream: POINTER): INTEGER_32
- feof_unlocked (a_stream: POINTER): INTEGER_32
- ferror (a_stream: POINTER): INTEGER_32
- ferror_unlocked (a_stream: POINTER): INTEGER_32
- fflush (a_stream: POINTER): INTEGER_32
- fflush_unlocked (a_stream: POINTER): INTEGER_32
- fgetc (a_stream: POINTER): INTEGER_32
- fgetc_unlocked (a_stream: POINTER): INTEGER_32
- fgetpos (a_stream: POINTER, a_pos: POINTER): INTEGER_32
- fgetpos64 (a_stream: POINTER, a_pos: POINTER): INTEGER_32
- fgets (a_s: POINTER, a_n: INTEGER_32, a_stream: POINTER): POINTER
- fgets_unlocked (a_s: POINTER, a_n: INTEGER_32, a_stream: POINTER): POINTER
- fileno (a_stream: POINTER): INTEGER_32
- fileno_unlocked (a_stream: POINTER): INTEGER_32
- flockfile (a_stream: POINTER)
- fmemopen (a_s: POINTER, a_len: NATURAL_64, a_modes: POINTER): POINTER
- fopen (a_filename: POINTER, a_modes: POINTER): POINTER
- fopen64 (a_filename: POINTER, a_modes: POINTER): POINTER
- fprintf (a_stream: POINTER, a_format: POINTER): INTEGER_32
- fputc (a_c: INTEGER_32, a_stream: POINTER): INTEGER_32
- fputc_unlocked (a_c: INTEGER_32, a_stream: POINTER): INTEGER_32
- fputs (a_s: POINTER, a_stream: POINTER): INTEGER_32
- fputs_unlocked (a_s: POINTER, a_stream: POINTER): INTEGER_32
- fread (a_ptr: POINTER, a_size: NATURAL_64, a_n: NATURAL_64, a_stream: POINTER): NATURAL_64
- fread_unlocked (a_ptr: POINTER, a_size: NATURAL_64, a_n: NATURAL_64, a_stream: POINTER): NATURAL_64
- freopen (a_filename: POINTER, a_modes: POINTER, a_stream: POINTER): POINTER
- freopen64 (a_filename: POINTER, a_modes: POINTER, a_stream: POINTER): POINTER
- fscanf (a_stream: POINTER, a_format: POINTER): INTEGER_32
- fseek (a_stream: POINTER, an_off: INTEGER_64, a_whence: INTEGER_32): INTEGER_32
- fseeko (a_stream: POINTER, an_off: INTEGER_64, a_whence: INTEGER_32): INTEGER_32
- fseeko64 (a_stream: POINTER, an_off: INTEGER_64, a_whence: INTEGER_32): INTEGER_32
- fsetpos (a_stream: POINTER, a_pos: POINTER): INTEGER_32
- fsetpos64 (a_stream: POINTER, a_pos: POINTER): INTEGER_32
- ftell (a_stream: POINTER): INTEGER_64
- ftello (a_stream: POINTER): INTEGER_64
- ftello64 (a_stream: POINTER): INTEGER_64
- ftrylockfile (a_stream: POINTER): INTEGER_32
- funlockfile (a_stream: POINTER)
- fwrite (a_ptr: POINTER, a_size: NATURAL_64, a_n: NATURAL_64, a_s: POINTER): NATURAL_64
- fwrite_unlocked (a_ptr: POINTER, a_size: NATURAL_64, a_n: NATURAL_64, a_stream: POINTER): NATURAL_64
- getc (a_stream: POINTER): INTEGER_32
- getc_unlocked (a_stream: POINTER): INTEGER_32
- getchar: INTEGER_32
- getchar_unlocked: INTEGER_32
- getdelim (a_lineptr: POINTER, a_n: POINTER, a_delimiter: INTEGER_32, a_stream: POINTER): INTEGER_64
- getline (a_lineptr: POINTER, a_n: POINTER, a_stream: POINTER): INTEGER_64
- gets (a_s: POINTER): POINTER
- getw (a_stream: POINTER): INTEGER_32
- obstack_printf (an_obstack: POINTER, a_format: POINTER): INTEGER_32
- obstack_vprintf (an_obstack: POINTER, a_format: POINTER, an_args: POINTER): INTEGER_32
- open_memstream (a_bufloc: POINTER, a_sizeloc: POINTER): POINTER
- pclose (a_stream: POINTER): INTEGER_32
- perror (a_s: POINTER)
- popen (a_command: POINTER, a_modes: POINTER): POINTER
- printf (a_format: POINTER): INTEGER_32
- putc (a_c: INTEGER_32, a_stream: POINTER): INTEGER_32
- putc_unlocked (a_c: INTEGER_32, a_stream: POINTER): INTEGER_32
- putchar (a_c: INTEGER_32): INTEGER_32
- putchar_unlocked (a_c: INTEGER_32): INTEGER_32
- puts (a_s: POINTER): INTEGER_32
- putw (a_w: INTEGER_32, a_stream: POINTER): INTEGER_32
- remove (a_filename: POINTER): INTEGER_32
- rename_external (an_old: POINTER, a_new: POINTER): INTEGER_32
- renameat (an_oldfd: INTEGER_32, an_old: POINTER, a_newfd: INTEGER_32, a_new: POINTER): INTEGER_32
- rewind (a_stream: POINTER)
- scanf (a_format: POINTER): INTEGER_32
- setbuf (a_stream: POINTER, a_buf: POINTER)
- setbuffer (a_stream: POINTER, a_buf: POINTER, a_size: NATURAL_64)
- setlinebuf (a_stream: POINTER)
- setvbuf (a_stream: POINTER, a_buf: POINTER, a_modes: INTEGER_32, a_n: NATURAL_64): INTEGER_32
- snprintf (a_s: POINTER, a_maxlen: NATURAL_64, a_format: POINTER): INTEGER_32
- sprintf (a_s: POINTER, a_format: POINTER): INTEGER_32
- sscanf (a_s: POINTER, a_format: POINTER): INTEGER_32
- stderr: POINTER
- address_of_stderr: POINTER
- set_stderr (a_value: POINTER)
- stdin: POINTER
- address_of_stdin: POINTER
- set_stdin (a_value: POINTER)
- stdout: POINTER
- address_of_stdout: POINTER
- set_stdout (a_value: POINTER)
- tempnam (a_dir: POINTER, a_pfx: POINTER): POINTER
- tmpfile: POINTER
- tmpfile64: POINTER
- tmpnam (a_s: POINTER): POINTER
- tmpnam_r (a_s: POINTER): POINTER
- ungetc (a_c: INTEGER_32, a_stream: POINTER): INTEGER_32
- vasprintf (a_ptr: POINTER, a_f: POINTER, an_arg: POINTER): INTEGER_32
- vdprintf (a_fd: INTEGER_32, a_fmt: POINTER, an_arg: POINTER): INTEGER_32
- vfprintf (a_s: POINTER, a_format: POINTER, an_arg: POINTER): INTEGER_32
- vfscanf (a_s: POINTER, a_format: POINTER, an_arg: POINTER): INTEGER_32
- vprintf (a_format: POINTER, an_arg: POINTER): INTEGER_32
- vscanf (a_format: POINTER, an_arg: POINTER): INTEGER_32
- vsnprintf (a_s: POINTER, a_maxlen: NATURAL_64, a_format: POINTER, an_arg: POINTER): INTEGER_32
- vsprintf (a_s: POINTER, a_format: POINTER, an_arg: POINTER): INTEGER_32
- vsscanf (a_s: POINTER, a_format: POINTER, an_arg: POINTER): INTEGER_32
clearerr_unlocked (a_stream:
POINTER)
{}