* xmlIOHTTPMatch: * @filename: the URI for matching * * DEPRECATED: Internal function, don't use. * * check if the URI matches an HTTP one * * Returns 1 if matches, 0 otherwise */
| 1001 | * Returns 1 if matches, 0 otherwise |
| 1002 | */ |
| 1003 | int |
| 1004 | xmlIOHTTPMatch (const char *filename) { |
| 1005 | if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "http://", 7)) |
| 1006 | return(1); |
| 1007 | return(0); |
| 1008 | } |
| 1009 | |
| 1010 | /** |
| 1011 | * xmlIOHTTPOpen: |
no test coverage detected