| 1138 | */ |
| 1139 | |
| 1140 | void* |
| 1141 | xmlNanoHTTPOpen(const char *URL, char **contentType) { |
| 1142 | if (contentType != NULL) *contentType = NULL; |
| 1143 | return(xmlNanoHTTPMethod(URL, NULL, NULL, contentType, NULL, 0)); |
| 1144 | } |
| 1145 | |
| 1146 | /** |
| 1147 | * xmlNanoHTTPOpenRedir: |
no test coverage detected