#include <errno.h>
#include <string.h>
#include "fileinputstream.h"
#include "gzipinputstream.h"
#include "inputstream.h"
#include "xmlcpg.h"
Compounds | |
struct | xmlcpgINPUTSTREAM |
Functions | |
void | xmlcpgdeleteInputStream (xmlcpgInputStream *is) |
Destroys the input stream. | |
int | xmlcpgisInputStream (const xmlcpgInputStream *is) |
Tells if the the object is an input stream. | |
int | xmlcpggetInputStreamEOS (const xmlcpgInputStream *is) |
Tests the end of stream indicator of the input stream. | |
int | xmlcpgreadInputStreamChar (xmlcpgInputStream *is) |
Reads a character from the input stream. | |
int | xmlcpgreadInputStream (xmlcpgInputStream *is, void *ptr, int size) |
Reads some bytes of data into the location pointed by ptr. | |
int | xmlcpgcloseInputStream (xmlcpgInputStream *is) |
Closes the input stream. | |
int | xmlcpggetInputStreamError (const xmlcpgInputStream *is) |
Tests the error indicator of the input stream. | |
const char * | xmlcpggetInputStreamErrorString (const xmlcpgInputStream *is) |
Gets the string describing the error. |
|
Closes the input stream.
|
|
Destroys the input stream. The stream must be closed before with the xmlcpgcloseInputStream function.
|
|
Tests the end of stream indicator of the input stream.
|
|
Tests the error indicator of the input stream.
|
|
Gets the string describing the error.
|
|
Tells if the the object is an input stream.
|
|
Reads some bytes of data into the location pointed by ptr.
|
|
Reads a character from the input stream.
|