summaryrefslogtreecommitdiffstats
path: root/thirdparties/common/include/libxml2/libxml/xmlIO.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparties/common/include/libxml2/libxml/xmlIO.h')
-rwxr-xr-xthirdparties/common/include/libxml2/libxml/xmlIO.h194
1 files changed, 97 insertions, 97 deletions
diff --git a/thirdparties/common/include/libxml2/libxml/xmlIO.h b/thirdparties/common/include/libxml2/libxml/xmlIO.h
index 6c241a8..7ddba9a 100755
--- a/thirdparties/common/include/libxml2/libxml/xmlIO.h
+++ b/thirdparties/common/include/libxml2/libxml/xmlIO.h
@@ -98,7 +98,7 @@ typedef void * (XMLCALL *xmlOutputOpenCallback) (char const *filename);
* Returns the number of bytes written or -1 in case of error
*/
typedef int (XMLCALL *xmlOutputWriteCallback) (void * context, const char * buffer,
- int len);
+ int len);
/**
* xmlOutputCloseCallback:
* @context: an Output context
@@ -156,191 +156,191 @@ struct _xmlOutputBuffer {
* Interfaces for input
*/
XMLPUBFUN void XMLCALL
- xmlCleanupInputCallbacks (void);
+xmlCleanupInputCallbacks (void);
XMLPUBFUN int XMLCALL
- xmlPopInputCallbacks (void);
+xmlPopInputCallbacks (void);
XMLPUBFUN void XMLCALL
- xmlRegisterDefaultInputCallbacks (void);
+xmlRegisterDefaultInputCallbacks (void);
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
- xmlAllocParserInputBuffer (xmlCharEncoding enc);
+xmlAllocParserInputBuffer (xmlCharEncoding enc);
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
- xmlParserInputBufferCreateFilename (const char *URI,
- xmlCharEncoding enc);
+xmlParserInputBufferCreateFilename (const char *URI,
+ xmlCharEncoding enc);
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
- xmlParserInputBufferCreateFile (FILE *file,
- xmlCharEncoding enc);
+xmlParserInputBufferCreateFile (FILE *file,
+ xmlCharEncoding enc);
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
- xmlParserInputBufferCreateFd (int fd,
- xmlCharEncoding enc);
+xmlParserInputBufferCreateFd (int fd,
+ xmlCharEncoding enc);
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
- xmlParserInputBufferCreateMem (const char *mem, int size,
- xmlCharEncoding enc);
+xmlParserInputBufferCreateMem (const char *mem, int size,
+ xmlCharEncoding enc);
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
- xmlParserInputBufferCreateStatic (const char *mem, int size,
- xmlCharEncoding enc);
+xmlParserInputBufferCreateStatic (const char *mem, int size,
+ xmlCharEncoding enc);
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
- xmlParserInputBufferCreateIO (xmlInputReadCallback ioread,
- xmlInputCloseCallback ioclose,
- void *ioctx,
- xmlCharEncoding enc);
+xmlParserInputBufferCreateIO (xmlInputReadCallback ioread,
+ xmlInputCloseCallback ioclose,
+ void *ioctx,
+ xmlCharEncoding enc);
XMLPUBFUN int XMLCALL
- xmlParserInputBufferRead (xmlParserInputBufferPtr in,
- int len);
+xmlParserInputBufferRead (xmlParserInputBufferPtr in,
+ int len);
XMLPUBFUN int XMLCALL
- xmlParserInputBufferGrow (xmlParserInputBufferPtr in,
- int len);
+xmlParserInputBufferGrow (xmlParserInputBufferPtr in,
+ int len);
XMLPUBFUN int XMLCALL
- xmlParserInputBufferPush (xmlParserInputBufferPtr in,
- int len,
- const char *buf);
+xmlParserInputBufferPush (xmlParserInputBufferPtr in,
+ int len,
+ const char *buf);
XMLPUBFUN void XMLCALL
- xmlFreeParserInputBuffer (xmlParserInputBufferPtr in);
+xmlFreeParserInputBuffer (xmlParserInputBufferPtr in);
XMLPUBFUN char * XMLCALL
- xmlParserGetDirectory (const char *filename);
+xmlParserGetDirectory (const char *filename);
XMLPUBFUN int XMLCALL
- xmlRegisterInputCallbacks (xmlInputMatchCallback matchFunc,
- xmlInputOpenCallback openFunc,
- xmlInputReadCallback readFunc,
- xmlInputCloseCallback closeFunc);
+xmlRegisterInputCallbacks (xmlInputMatchCallback matchFunc,
+ xmlInputOpenCallback openFunc,
+ xmlInputReadCallback readFunc,
+ xmlInputCloseCallback closeFunc);
xmlParserInputBufferPtr
- __xmlParserInputBufferCreateFilename(const char *URI,
- xmlCharEncoding enc);
+__xmlParserInputBufferCreateFilename(const char *URI,
+ xmlCharEncoding enc);
#ifdef LIBXML_OUTPUT_ENABLED
/*
* Interfaces for output
*/
XMLPUBFUN void XMLCALL
- xmlCleanupOutputCallbacks (void);
+xmlCleanupOutputCallbacks (void);
XMLPUBFUN void XMLCALL
- xmlRegisterDefaultOutputCallbacks(void);
+xmlRegisterDefaultOutputCallbacks(void);
XMLPUBFUN xmlOutputBufferPtr XMLCALL
- xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder);
+xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder);
XMLPUBFUN xmlOutputBufferPtr XMLCALL
- xmlOutputBufferCreateFilename (const char *URI,
- xmlCharEncodingHandlerPtr encoder,
- int compression);
+xmlOutputBufferCreateFilename (const char *URI,
+ xmlCharEncodingHandlerPtr encoder,
+ int compression);
XMLPUBFUN xmlOutputBufferPtr XMLCALL
- xmlOutputBufferCreateFile (FILE *file,
- xmlCharEncodingHandlerPtr encoder);
+xmlOutputBufferCreateFile (FILE *file,
+ xmlCharEncodingHandlerPtr encoder);
XMLPUBFUN xmlOutputBufferPtr XMLCALL
- xmlOutputBufferCreateBuffer (xmlBufferPtr buffer,
- xmlCharEncodingHandlerPtr encoder);
+xmlOutputBufferCreateBuffer (xmlBufferPtr buffer,
+ xmlCharEncodingHandlerPtr encoder);
XMLPUBFUN xmlOutputBufferPtr XMLCALL
- xmlOutputBufferCreateFd (int fd,
- xmlCharEncodingHandlerPtr encoder);
+xmlOutputBufferCreateFd (int fd,
+ xmlCharEncodingHandlerPtr encoder);
XMLPUBFUN xmlOutputBufferPtr XMLCALL
- xmlOutputBufferCreateIO (xmlOutputWriteCallback iowrite,
- xmlOutputCloseCallback ioclose,
- void *ioctx,
- xmlCharEncodingHandlerPtr encoder);
+xmlOutputBufferCreateIO (xmlOutputWriteCallback iowrite,
+ xmlOutputCloseCallback ioclose,
+ void *ioctx,
+ xmlCharEncodingHandlerPtr encoder);
/* Couple of APIs to get the output without digging into the buffers */
XMLPUBFUN const xmlChar * XMLCALL
- xmlOutputBufferGetContent (xmlOutputBufferPtr out);
+xmlOutputBufferGetContent (xmlOutputBufferPtr out);
XMLPUBFUN size_t XMLCALL
- xmlOutputBufferGetSize (xmlOutputBufferPtr out);
+xmlOutputBufferGetSize (xmlOutputBufferPtr out);
XMLPUBFUN int XMLCALL
- xmlOutputBufferWrite (xmlOutputBufferPtr out,
- int len,
- const char *buf);
+xmlOutputBufferWrite (xmlOutputBufferPtr out,
+ int len,
+ const char *buf);
XMLPUBFUN int XMLCALL
- xmlOutputBufferWriteString (xmlOutputBufferPtr out,
- const char *str);
+xmlOutputBufferWriteString (xmlOutputBufferPtr out,
+ const char *str);
XMLPUBFUN int XMLCALL
- xmlOutputBufferWriteEscape (xmlOutputBufferPtr out,
- const xmlChar *str,
- xmlCharEncodingOutputFunc escaping);
+xmlOutputBufferWriteEscape (xmlOutputBufferPtr out,
+ const xmlChar *str,
+ xmlCharEncodingOutputFunc escaping);
XMLPUBFUN int XMLCALL
- xmlOutputBufferFlush (xmlOutputBufferPtr out);
+xmlOutputBufferFlush (xmlOutputBufferPtr out);
XMLPUBFUN int XMLCALL
- xmlOutputBufferClose (xmlOutputBufferPtr out);
+xmlOutputBufferClose (xmlOutputBufferPtr out);
XMLPUBFUN int XMLCALL
- xmlRegisterOutputCallbacks (xmlOutputMatchCallback matchFunc,
- xmlOutputOpenCallback openFunc,
- xmlOutputWriteCallback writeFunc,
- xmlOutputCloseCallback closeFunc);
+xmlRegisterOutputCallbacks (xmlOutputMatchCallback matchFunc,
+ xmlOutputOpenCallback openFunc,
+ xmlOutputWriteCallback writeFunc,
+ xmlOutputCloseCallback closeFunc);
xmlOutputBufferPtr
- __xmlOutputBufferCreateFilename(const char *URI,
- xmlCharEncodingHandlerPtr encoder,
- int compression);
+__xmlOutputBufferCreateFilename(const char *URI,
+ xmlCharEncodingHandlerPtr encoder,
+ int compression);
#ifdef LIBXML_HTTP_ENABLED
/* This function only exists if HTTP support built into the library */
XMLPUBFUN void XMLCALL
- xmlRegisterHTTPPostCallbacks (void );
+xmlRegisterHTTPPostCallbacks (void );
#endif /* LIBXML_HTTP_ENABLED */
#endif /* LIBXML_OUTPUT_ENABLED */
XMLPUBFUN xmlParserInputPtr XMLCALL
- xmlCheckHTTPInput (xmlParserCtxtPtr ctxt,
- xmlParserInputPtr ret);
+xmlCheckHTTPInput (xmlParserCtxtPtr ctxt,
+ xmlParserInputPtr ret);
/*
* A predefined entity loader disabling network accesses
*/
XMLPUBFUN xmlParserInputPtr XMLCALL
- xmlNoNetExternalEntityLoader (const char *URL,
- const char *ID,
- xmlParserCtxtPtr ctxt);
+xmlNoNetExternalEntityLoader (const char *URL,
+ const char *ID,
+ xmlParserCtxtPtr ctxt);
/*
* xmlNormalizeWindowsPath is obsolete, don't use it.
* Check xmlCanonicPath in uri.h for a better alternative.
*/
XMLPUBFUN xmlChar * XMLCALL
- xmlNormalizeWindowsPath (const xmlChar *path);
+xmlNormalizeWindowsPath (const xmlChar *path);
XMLPUBFUN int XMLCALL
- xmlCheckFilename (const char *path);
+xmlCheckFilename (const char *path);
/**
* Default 'file://' protocol callbacks
*/
XMLPUBFUN int XMLCALL
- xmlFileMatch (const char *filename);
+xmlFileMatch (const char *filename);
XMLPUBFUN void * XMLCALL
- xmlFileOpen (const char *filename);
+xmlFileOpen (const char *filename);
XMLPUBFUN int XMLCALL
- xmlFileRead (void * context,
- char * buffer,
- int len);
+xmlFileRead (void * context,
+ char * buffer,
+ int len);
XMLPUBFUN int XMLCALL
- xmlFileClose (void * context);
+xmlFileClose (void * context);
/**
* Default 'http://' protocol callbacks
*/
#ifdef LIBXML_HTTP_ENABLED
XMLPUBFUN int XMLCALL
- xmlIOHTTPMatch (const char *filename);
+xmlIOHTTPMatch (const char *filename);
XMLPUBFUN void * XMLCALL
- xmlIOHTTPOpen (const char *filename);
+xmlIOHTTPOpen (const char *filename);
#ifdef LIBXML_OUTPUT_ENABLED
XMLPUBFUN void * XMLCALL
- xmlIOHTTPOpenW (const char * post_uri,
- int compression );
+xmlIOHTTPOpenW (const char * post_uri,
+ int compression );
#endif /* LIBXML_OUTPUT_ENABLED */
XMLPUBFUN int XMLCALL
- xmlIOHTTPRead (void * context,
- char * buffer,
- int len);
+xmlIOHTTPRead (void * context,
+ char * buffer,
+ int len);
XMLPUBFUN int XMLCALL
- xmlIOHTTPClose (void * context);
+xmlIOHTTPClose (void * context);
#endif /* LIBXML_HTTP_ENABLED */
/**
@@ -348,15 +348,15 @@ XMLPUBFUN int XMLCALL
*/
#ifdef LIBXML_FTP_ENABLED
XMLPUBFUN int XMLCALL
- xmlIOFTPMatch (const char *filename);
+xmlIOFTPMatch (const char *filename);
XMLPUBFUN void * XMLCALL
- xmlIOFTPOpen (const char *filename);
+xmlIOFTPOpen (const char *filename);
XMLPUBFUN int XMLCALL
- xmlIOFTPRead (void * context,
- char * buffer,
- int len);
+xmlIOFTPRead (void * context,
+ char * buffer,
+ int len);
XMLPUBFUN int XMLCALL
- xmlIOFTPClose (void * context);
+xmlIOFTPClose (void * context);
#endif /* LIBXML_FTP_ENABLED */
#ifdef __cplusplus
OpenPOWER on IntegriCloud