Home | History | Annotate | Download | only in libxml2

Lines Matching refs:FILE

6852  *			Output : to a FILE or in memory			*
7128 * @file: the file output
7131 * Dumps an XML buffer to a FILE *.
7135 xmlBufferDump(FILE *file, xmlBufferPtr buf) {
7152 if (file == NULL)
7153 file = stdout;
7154 ret = fwrite(buf->content, sizeof(xmlChar), buf->use, file);