diff options
author | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
commit | 059d8dd2122f0a3948c2c09549159f0931a6f236 (patch) | |
tree | 8a2937938ed4eec31f918c6c8401ce07012cd37a /include/util_xml.h | |
parent | Use the AP_INIT_TAKE23() macro to clean up a maintainer-mode warning, (diff) | |
download | apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.tar.xz apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.zip |
prefix libapr functions and types with apr_
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85976 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_xml.h')
-rw-r--r-- | include/util_xml.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/util_xml.h b/include/util_xml.h index f7e45d4769..7d302360cc 100644 --- a/include/util_xml.h +++ b/include/util_xml.h @@ -80,7 +80,7 @@ typedef struct ap_text *last; } ap_text_header; -API_EXPORT(void) ap_text_append(ap_pool_t *p, ap_text_header *hdr, +API_EXPORT(void) ap_text_append(apr_pool_t *p, ap_text_header *hdr, const char *text); @@ -186,15 +186,15 @@ typedef struct ap_xml_elem typedef struct ap_xml_doc { ap_xml_elem *root; /* root element */ - ap_array_header_t *namespaces; /* array of namespaces used */ + apr_array_header_t *namespaces; /* array of namespaces used */ } ap_xml_doc; API_EXPORT(int) ap_xml_parse_input(request_rec *r, ap_xml_doc **pdoc); /* Converts an XML element tree to flat text */ -API_EXPORT(void) ap_xml_to_text(ap_pool_t *p, const ap_xml_elem *elem, - int style, ap_array_header_t *namespaces, +API_EXPORT(void) ap_xml_to_text(apr_pool_t *p, const ap_xml_elem *elem, + int style, apr_array_header_t *namespaces, int *ns_map, const char **pbuf, size_t *psize); /* style argument values: */ @@ -203,17 +203,17 @@ API_EXPORT(void) ap_xml_to_text(ap_pool_t *p, const ap_xml_elem *elem, #define AP_XML_X2T_LANG_INNER 2 /* xml:lang + inner contents */ #define AP_XML_X2T_FULL_NS_LANG 3 /* FULL + ns defns + xml:lang */ -API_EXPORT(const char *) ap_xml_empty_elem(ap_pool_t *p, +API_EXPORT(const char *) ap_xml_empty_elem(apr_pool_t *p, const ap_xml_elem *elem); -API_EXPORT(const char *) ap_xml_quote_string(ap_pool_t *p, const char *s, +API_EXPORT(const char *) ap_xml_quote_string(apr_pool_t *p, const char *s, int quotes); -API_EXPORT(void) ap_xml_quote_elem(ap_pool_t *p, ap_xml_elem *elem); +API_EXPORT(void) ap_xml_quote_elem(apr_pool_t *p, ap_xml_elem *elem); /* manage an array of unique URIs: ap_xml_insert_uri() and AP_XML_URI_ITEM() */ /* return the URI's (existing) index, or insert it and return a new index */ -API_EXPORT(int) ap_xml_insert_uri(ap_array_header_t *uri_array, +API_EXPORT(int) ap_xml_insert_uri(apr_array_header_t *uri_array, const char *uri); #define AP_XML_GET_URI_ITEM(ary, i) (((const char * const *)(ary)->elts)[i]) |