Annotation of XML/uri.h, revision 1.1

1.1     ! daniel      1: /**
        !             2:  * uri.c: library of generic URI related routines 
        !             3:  *
        !             4:  * Reference: RFC 2396
        !             5:  *
        !             6:  * See Copyright for the status of this software.
        !             7:  *
        !             8:  * Daniel.Veillard@w3.org
        !             9:  */
        !            10: 
        !            11: #ifndef __XML_URI_H__
        !            12: #define __XML_URI_H__
        !            13: 
        !            14: #ifdef __cplusplus
        !            15: extern "C" {
        !            16: #endif
        !            17: 
        !            18: /*
        !            19:  * This function is in tree.h:
        !            20:  * xmlChar *   xmlNodeGetBase  (xmlDocPtr doc,
        !            21:  *                               xmlNodePtr cur);
        !            22:  */
        !            23: xmlChar *      xmlBuildURI     (const xmlChar *URI,
        !            24:                                 xmlDocPtr doc,
        !            25:                                 xmlNodePtr node);
        !            26: int            xmlParseURI     (const char *URI,
        !            27:                                 char **protocol,
        !            28:                                 char **hostname,
        !            29:                                 int *port,
        !            30:                                 char **path,
        !            31:                                 char **fragment);
        !            32: #ifdef __cplusplus
        !            33: }
        !            34: #endif
        !            35: #endif /* __XML_URI_H__ */

Webmaster