/** * uri.c: library of generic URI related routines * * Reference: RFC 2396 * * See Copyright for the status of this software. * * Daniel.Veillard@w3.org */ #ifndef __XML_URI_H__ #define __XML_URI_H__ #ifdef __cplusplus extern "C" { #endif /* * This function is in tree.h: * xmlChar * xmlNodeGetBase (xmlDocPtr doc, * xmlNodePtr cur); */ xmlChar * xmlBuildURI (const xmlChar *URI, xmlDocPtr doc, xmlNodePtr node); int xmlParseURI (const char *URI, char **protocol, char **hostname, int *port, char **path, char **fragment); #ifdef __cplusplus } #endif #endif /* __XML_URI_H__ */