boolean_t type_write(const type_t *object, FILE *stream);
type_t
to the binary
file stream in self-delimiting format and returns TRUE
if and only if the write succeeds.
type_t *type_read(FILE *stream);
type_t
from the binary
file stream in self-delimiting format and returns it.
boolean_t type_fprintf(const type_t *object, FILE *stream);
type_t
on ASCII file stream
in self-delimiting human-readable format.
type_t *type_fscanf(FILE *stream);
type_t
from ASCII file stream
in self-delimiting human-readable format and returns it.
boolean_t type_backup(const type_t *object, FILE *stream);
type_t
to the binary
file stream in self-delimiting format and returns TRUE if and only if
the write succeeds. This is used when
boolean_t type_restore(type_t *object, FILE *stream);
type_t
from the
binary file stream in self-delimiting format and returns TRUE if and
only if the read succeeds and the objects properties are updated from
the file stream.
Go to the first, previous, next, last section, table of contents.