fdopen
- Updated2023-02-21
- 2 minute(s) read
fdopen
FILE *fdopen (int fileHandle, const char mode[]);
Purpose
Obtains a pointer to a buffered I/O stream from a file handle returned by one of the following functions:
The returned value can be used as if it had been returned by fopen.
Parameters
Input | ||||||||||||||||||||||||||||||
Name | Type | Description | ||||||||||||||||||||||||||||
fileHandle | int | A file handle returned by one of the following functions: | ||||||||||||||||||||||||||||
mode | const char [] | Specifies the mode of reading and writing desired for the opened file. The possible modes are listed in the following chart.
|
Return Value
Name | Type | Description |
stream | FILE * | Contains a pointer to the I/O stream associated with the openedfile if successful. If the open operation fails, fdopen returns NULL and sets errno to a nonzero value. |
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 4.0 and later