Go to the source code of this file.
Data Structures | |
struct | dt_reader_text |
Data stored by a text reader object. More... | |
struct | dt_writer_text |
Data stored by a text writer object. More... | |
Enumerations | |
enum | { eCommentMark = '#', ePasQuote = '\'', eArrayOpen = '(', eArrayClose = ')', eRecordOpen = '{', eRecordClose = '}', eKeyMark = ':' } |
Special characters defining the structure of a PasText file. More... | |
Functions | |
dt_reader * | dt_create_text_reader (FILE *src, dt_text_mode_flags flags) |
Create a reader that will decode the condents of the specified file. | |
dt_writer * | dt_create_text_writer (FILE *dst, dt_text_mode_flags mode) |
Create a writer that will decode the condents of the specified file. |
|
Special characters defining the structure of a PasText file.
Definition at line 11 of file dt_stream_text.c. |
|
Create a reader that will decode the condents of the specified file. The caller retains ownership of the source file handle (src), and is responsible for closing it after destruction of the reader object.
Definition at line 56 of file dt_stream_text.c. |
|
Create a writer that will decode the condents of the specified file. The caller retains ownership of the output file handle (src), and is responsible for closing it after destruction of the writer object. Definition at line 223 of file dt_stream_text.c. |