* xmlIOHTTPOpen: * @filename: the URI for matching * * DEPRECATED: Internal function, don't use. * * open an HTTP I/O channel * * Returns an I/O context or NULL in case of error */
| 1018 | * Returns an I/O context or NULL in case of error |
| 1019 | */ |
| 1020 | void * |
| 1021 | xmlIOHTTPOpen (const char *filename) { |
| 1022 | return(xmlNanoHTTPOpen(filename, NULL)); |
| 1023 | } |
| 1024 | |
| 1025 | #ifdef LIBXML_OUTPUT_ENABLED |
| 1026 | /** |
no test coverage detected