|
Y-lib
Loadrunner libraries
|
Standard C structures and functions to handle files (defined in stdio.h) More...
Macros | |
| #define | FILENAME_MAX 1024 |
| #define | L_tmpnam FILENAME_MAX |
| #define | SEEK_SET 0 |
| set file offset to offset More... | |
| #define | SEEK_CUR 1 |
| set file offset to current plus offset More... | |
| #define | SEEK_END 2 |
| set file offset to EOF plus offset More... | |
| #define | _IOFBF 0 |
| setvbuf should set fully buffered More... | |
| #define | _IOLBF 1 |
| setvbuf should set line buffered More... | |
| #define | _IONBF 2 |
| setvbuf should set unbuffered More... | |
| #define | EOF (-1) |
| the End-Of-File constant More... | |
Standard C structures and functions to handle files (defined in stdio.h)
| #define L_tmpnam FILENAME_MAX |
| int fclose | ( | long | file_pointer | ) |
Documented at http://www.cplusplus.com/reference/cstdio/fclose/.
| int feof | ( | long | file_pointer | ) |
Documented at http://www.cplusplus.com/reference/cstdio/feof/.
| int ferror | ( | long | file_pointer | ) |
Documented at http://www.cplusplus.com/reference/cstdio/ferror/.
| int fgetc | ( | long | file_pointer | ) |
Documented at http://www.cplusplus.com/reference/cstdio/fgetc/.
| char* fgets | ( | char * | string, |
| int | maxchar, | ||
| long | file_pointer | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fgets/.
| long fopen | ( | const char * | filename, |
| const char * | access_mode | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fopen/.
| int fprintf | ( | long | file_pointer, |
| const char * | format_string, | ||
| ... | |||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fprintf/.
| int fputc | ( | int | c, |
| long | file_pointer | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fputc/.
| int fputs | ( | const char * | str, |
| long | file_pointer | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fputs/.
| size_t fread | ( | void * | buffer, |
| size_t | size, | ||
| size_t | count, | ||
| long | file_pointer | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fread/.
| int fscanf | ( | long | file_pointer, |
| const char * | format_string, | ||
| ... | |||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fscanf/.
| int fseek | ( | long | file_pointer, |
| long | offset, | ||
| int | origin | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fseek/.
| long ftell | ( | long | file_pointer | ) |
Documented at http://www.cplusplus.com/reference/cstdio/ftell/.
| size_t fwrite | ( | const void * | buffer, |
| size_t | size, | ||
| size_t | count, | ||
| long | file_pointer | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/fwrite/.
| void rewind | ( | long | file_pointer | ) |
Documented at http://www.cplusplus.com/reference/cstdio/rewind/.
| int setvbuf | ( | long | file_pointer, |
| char * | buffer, | ||
| int | mode, | ||
| size_t | size | ||
| ) |
Documented at http://www.cplusplus.com/reference/cstdio/setvbuf/.
| long tmpfile | ( | void | ) |
Documented at http://www.cplusplus.com/reference/cstdio/tmpfile/.
| char* tmpnam | ( | char * | str | ) |
Documented at http://www.cplusplus.com/reference/cstdio/tmpnam/.
1.8.11