- Brief Description:\n Reads a line from a G-PAK file.
This function reads a line from the specified G-PAK file and stores it in the provided _buffer.
- Parameters
-
_file | A pointer to the gpak_file_t. |
_buffer | A pointer to the buffer where the line will be stored. |
_max | The maximum number of characters to read (including the null-terminator). |
- Returns
- A pointer to the _buffer or NULL if the end of the file is reached.
Definition at line 440 of file gpak.c.
442 return fgets(_buffer, _max, _file->
stream_);
References gpak_file::stream_.