GPAK  1.0.0
A general-purpose archive library

◆ gpak_fgetc()

GPAK_API int gpak_fgetc ( gpak_file_t _file)
Brief Description:\n Reads the next character from a G-PAK file.

This function reads the next character from the specified G-PAK file.

Parameters
_fileA pointer to the gpak_file_t.
Returns
The next character as an integer or EOF if the end of the file is reached.

Definition at line 435 of file gpak.c.

436 {
437  return fgetc(_file->stream_);
438 }
FILE * stream_
Definition: gpak_data.h:285

References gpak_file::stream_.