Lines Matching full:file
38 definition for @code{errno} in the header file @file{errno.h}, as part
46 them using the @code{errno} macro from @file{errno.h}).
49 interfaces. You must include @file{errno.h}, then disable the macro,
68 Close a file. Minimal implementation:
71 int close(int file) @{
113 Status of an open file. For consistency with other minimal
115 special devices. The @file{sys/stat.h} header file required is
116 distributed in the @file{include} subdirectory for this C library.
120 int fstat(int file, struct stat *st) @{
143 int isatty(int file) @{
162 Establish a new name for an existing file. Minimal implementation:
175 Set position in a file. Minimal implementation:
178 int lseek(int file, int ptr, int dir) @{
184 Open a file. Minimal implementation:
193 Read from a file. Minimal implementation:
196 int read(int file, char *ptr, int len) @{
230 Status of a file (by name). Minimal implementation:
233 int stat(char *file, struct stat *st) @{
249 Remove a file's directory entry. Minimal implementation:
274 Write to a file. @file{libc} subroutines will use this
285 int write(int file, char *ptr, int len) @{
303 require reentrancy, @file{libc.a} provides cover routines (for example,