Annotation of XML/nanohttp.h, revision 1.2

1.1       daniel      1: /*
                      2:  * nanohttp.c: minimalist HTTP implementation to fetch external subsets.
                      3:  *
                      4:  * See Copyright for the status of this software.
                      5:  *
                      6:  * Daniel.Veillard@w3.org
                      7:  */
                      8:  
                      9: #ifndef __NANO_HTTP_H__
                     10: #define __NANO_HTTP_H__
                     11: int    xmlNanoHTTPFetch        (const char *URL,
                     12:                                 const char *filename);
1.2     ! daniel     13: void * xmlNanoHTTPOpen         (const char *URL,
        !            14:                                 char **contentType);
        !            15: void   xmlNanoHTTPClose        (void *ctx);
        !            16: void   xmlNanoHTTPClose        (void *ctx);
        !            17: #endif /* __NANO_HTTP_H__ */

Webmaster