Lines Matching refs:a

22 to generate or scan strings according to specifications from a format string.
25 system, but these functions provide a uniform interface.
39 @code{stderr}. The argument @var{reent} is a pointer to a reentrancy
44 * Function diprintf:: Print to a file descriptor (integer only)
45 * Function dprintf:: Print to a file descriptor
46 * Function fclose:: Close a file
48 * Function fdopen:: Turn an open file into a stream
52 * Function fgetc:: Get a character from a file or stream
53 * Function fgetpos:: Record position in a stream or file
54 * Function fgets:: Get character string from a file or stream
55 * Function fgetwc:: Get a wide character from a file or stream
56 * Function fgetws:: Get a wide character string from a file or stream
58 * Function fmemopen:: Open a stream around a fixed-length buffer
59 * Function fopen:: Open a file
60 * Function fopencookie:: Open a stream with custom callbacks
61 * Function fpurge:: Discard all pending I/O on a stream
62 * Function fputc:: Write a character on a stream or file
63 * Function fputs:: Write a character string in a file or stream
64 * Function fputwc:: Write a wide character to a file or stream
65 * Function fputws:: Write a wide character string to a file or stream
66 * Function fread:: Read array elements from a file
67 * Function freopen:: Open a file using an existing file descriptor
70 * Function fsetpos:: Restore position of a stream or file
71 * Function ftell:: Return position in a stream or file
72 * Function funopen:: Open a stream with custom callbacks
73 * Function fwide:: Set and determine the orientation of a FILE stream
74 * Function fwrite:: Write array elements from memory to a file or stream
75 * Function getc:: Get a character from a file or stream (macro)
76 * Function getc_unlocked:: Get a character from a file or stream (macro)
77 * Function getchar:: Get a character from standard input (macro)
78 * Function getchar_unlocked:: Get a character from standard input (macro)
79 * Function getdelim:: Get character string from a file or stream
80 * Function getline:: Get character string from a file or stream
82 * Function getw:: Get a word (int) from a file or stream
83 * Function getwchar:: Get a wide character from standard input
85 * Function open_memstream:: Open a write stream around an arbitrary-length buffer
87 * Function putc:: Write a character on a stream or file (macro)
88 * Function putc_unlocked:: Write a character on a stream or file (macro)
89 * Function putchar:: Write a character on standard output (macro)
90 * Function putchar_unlocked:: Write a character on standard output (macro)
91 * Function puts:: Write a character string on standard output
92 * Function putw:: Write a word (int) to a file or stream
93 * Function putwchar:: Write a wide character to standard output
94 * Function remove:: Delete a file's name
95 * Function rename:: Rename a file
96 * Function rewind:: Reinitialize a file or stream
97 * Function setbuf:: Specify full buffering for a file or stream
98 * Function setbuffer:: Specify full buffering for a file or stream with size
99 * Function setlinebuf:: Specify line buffering for a file or stream
100 * Function setvbuf:: Specify buffering for a file or stream
108 * Function tmpfile:: Create a temporary file
109 * Function tmpnam:: Generate name for a temporary file
110 * Function ungetc:: Push data back into a stream
111 * Function ungetwc:: Push wide character data back into a stream