You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2005/02/08 00:11:54 UTC

svn commit: r151768 [9/47] - in apr/site/trunk/docs/docs/apr: ./ iconv/ util/

Modified: apr/site/trunk/docs/docs/apr-util/apr__reslist_8h-source.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__reslist_8h-source.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__reslist_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__reslist_8h-source.html Mon Feb  7 15:10:17 2005
@@ -3,90 +3,91 @@
 <title>Apache Portable Runtime Utility Library: include/apr_reslist.h Source File</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_reslist.h</h1><a href="apr__reslist_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2000-2004 The Apache Software Foundation</span>
-00002 <span class="comment"> *</span>
-00003 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
-00004 <span class="comment"> * you may not use this file except in compliance with the License.</span>
-00005 <span class="comment"> * You may obtain a copy of the License at</span>
-00006 <span class="comment"> *</span>
-00007 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
-00008 <span class="comment"> *</span>
-00009 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
-00010 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
-00011 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
-00012 <span class="comment"> * See the License for the specific language governing permissions and</span>
-00013 <span class="comment"> * limitations under the License.</span>
-00014 <span class="comment"> */</span>
-00015 
-00016 <span class="preprocessor">#ifndef APR_RESLIST_H</span>
-00017 <span class="preprocessor"></span><span class="preprocessor">#define APR_RESLIST_H</span>
-00018 <span class="preprocessor"></span>
-00024 <span class="preprocessor">#include "apr.h"</span>
-00025 <span class="preprocessor">#include "apu.h"</span>
-00026 <span class="preprocessor">#include "apr_pools.h"</span>
-00027 <span class="preprocessor">#include "apr_errno.h"</span>
-00028 <span class="preprocessor">#include "apr_time.h"</span>
-00029 
-00030 <span class="preprocessor">#if APR_HAS_THREADS</span>
-00031 <span class="preprocessor"></span>
-00038 <span class="preprocessor">#ifdef __cplusplus</span>
-00039 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
-00040 <span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span>
-00041 
-<a name="l00043"></a><a class="code" href="group___a_p_r___util___r_l.html#ga0">00043</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___r_l.html#ga0">apr_reslist_t</a> <a class="code" href="group___a_p_r___util___r_l.html#ga0">apr_reslist_t</a>;
-00044 
-00045 <span class="comment">/* Generic constructor called by resource list when it needs to create a</span>
-00046 <span class="comment"> * resource.</span>
-00047 <span class="comment"> * @param resource opaque resource</span>
-00048 <span class="comment"> * @param param flags</span>
-00049 <span class="comment"> * @param pool  Pool</span>
-00050 <span class="comment"> */</span>
-00051 <span class="keyword">typedef</span> apr_status_t (*apr_reslist_constructor)(<span class="keywordtype">void</span> **resource, <span class="keywordtype">void</span> *params,
-00052                                                 apr_pool_t *pool);
-00053 
-00054 <span class="comment">/* Generic destructor called by resource list when it needs to destroy a</span>
-00055 <span class="comment"> * resource.</span>
-00056 <span class="comment"> * @param resource opaque resource</span>
-00057 <span class="comment"> * @param param flags</span>
-00058 <span class="comment"> * @param pool  Pool</span>
-00059 <span class="comment"> */</span>
-00060 <span class="keyword">typedef</span> apr_status_t (*apr_reslist_destructor)(<span class="keywordtype">void</span> *resource, <span class="keywordtype">void</span> *params,
-00061                                                apr_pool_t *pool);
-00062 
-00082 APU_DECLARE(apr_status_t) apr_reslist_create(apr_reslist_t **reslist,
-00083                                              <span class="keywordtype">int</span> min, <span class="keywordtype">int</span> smax, <span class="keywordtype">int</span> hmax,
-00084                                              apr_interval_time_t ttl,
-00085                                              apr_reslist_constructor con,
-00086                                              apr_reslist_destructor de,
-00087                                              <span class="keywordtype">void</span> *params,
-00088                                              apr_pool_t *pool);
-00089 
-00101 APU_DECLARE(apr_status_t) apr_reslist_destroy(apr_reslist_t *reslist);
-00102 
-00108 APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist,
-00109                                               <span class="keywordtype">void</span> **resource);
-00110 
-00114 APU_DECLARE(apr_status_t) apr_reslist_release(apr_reslist_t *reslist,
-00115                                               <span class="keywordtype">void</span> *resource);
-00116 
-00123 APU_DECLARE(<span class="keywordtype">void</span>) apr_reslist_timeout_set(apr_reslist_t *reslist,
-00124                                           apr_interval_time_t timeout);
-00125 
-00131 APU_DECLARE(apr_status_t) apr_reslist_invalidate(apr_reslist_t *reslist,
-00132                                                  <span class="keywordtype">void</span> *resource);
-00133 
+<h1>include/apr_reslist.h</h1><a href="apr__reslist_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as</span>
+00002 <span class="comment"> * applicable.</span>
+00003 <span class="comment"> *</span>
+00004 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
+00005 <span class="comment"> * you may not use this file except in compliance with the License.</span>
+00006 <span class="comment"> * You may obtain a copy of the License at</span>
+00007 <span class="comment"> *</span>
+00008 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
+00009 <span class="comment"> *</span>
+00010 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
+00011 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
+00012 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
+00013 <span class="comment"> * See the License for the specific language governing permissions and</span>
+00014 <span class="comment"> * limitations under the License.</span>
+00015 <span class="comment"> */</span>
+00016 
+00017 <span class="preprocessor">#ifndef APR_RESLIST_H</span>
+00018 <span class="preprocessor"></span><span class="preprocessor">#define APR_RESLIST_H</span>
+00019 <span class="preprocessor"></span>
+00025 <span class="preprocessor">#include "apr.h"</span>
+00026 <span class="preprocessor">#include "apu.h"</span>
+00027 <span class="preprocessor">#include "apr_pools.h"</span>
+00028 <span class="preprocessor">#include "apr_errno.h"</span>
+00029 <span class="preprocessor">#include "apr_time.h"</span>
+00030 
+00031 <span class="preprocessor">#if APR_HAS_THREADS</span>
+00032 <span class="preprocessor"></span>
+00039 <span class="preprocessor">#ifdef __cplusplus</span>
+00040 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
+00041 <span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span>
+00042 
+<a name="l00044"></a><a class="code" href="group___a_p_r___util___r_l.html#ga0">00044</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___r_l.html#ga0">apr_reslist_t</a> <a class="code" href="group___a_p_r___util___r_l.html#ga0">apr_reslist_t</a>;
+00045 
+00046 <span class="comment">/* Generic constructor called by resource list when it needs to create a</span>
+00047 <span class="comment"> * resource.</span>
+00048 <span class="comment"> * @param resource opaque resource</span>
+00049 <span class="comment"> * @param param flags</span>
+00050 <span class="comment"> * @param pool  Pool</span>
+00051 <span class="comment"> */</span>
+00052 <span class="keyword">typedef</span> apr_status_t (*apr_reslist_constructor)(<span class="keywordtype">void</span> **resource, <span class="keywordtype">void</span> *params,
+00053                                                 apr_pool_t *pool);
+00054 
+00055 <span class="comment">/* Generic destructor called by resource list when it needs to destroy a</span>
+00056 <span class="comment"> * resource.</span>
+00057 <span class="comment"> * @param resource opaque resource</span>
+00058 <span class="comment"> * @param param flags</span>
+00059 <span class="comment"> * @param pool  Pool</span>
+00060 <span class="comment"> */</span>
+00061 <span class="keyword">typedef</span> apr_status_t (*apr_reslist_destructor)(<span class="keywordtype">void</span> *resource, <span class="keywordtype">void</span> *params,
+00062                                                apr_pool_t *pool);
+00063 
+00083 APU_DECLARE(apr_status_t) apr_reslist_create(apr_reslist_t **reslist,
+00084                                              <span class="keywordtype">int</span> min, <span class="keywordtype">int</span> smax, <span class="keywordtype">int</span> hmax,
+00085                                              apr_interval_time_t ttl,
+00086                                              apr_reslist_constructor con,
+00087                                              apr_reslist_destructor de,
+00088                                              <span class="keywordtype">void</span> *params,
+00089                                              apr_pool_t *pool);
+00090 
+00102 APU_DECLARE(apr_status_t) apr_reslist_destroy(apr_reslist_t *reslist);
+00103 
+00109 APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist,
+00110                                               <span class="keywordtype">void</span> **resource);
+00111 
+00115 APU_DECLARE(apr_status_t) apr_reslist_release(apr_reslist_t *reslist,
+00116                                               <span class="keywordtype">void</span> *resource);
+00117 
+00124 APU_DECLARE(<span class="keywordtype">void</span>) apr_reslist_timeout_set(apr_reslist_t *reslist,
+00125                                           apr_interval_time_t timeout);
+00126 
+00132 APU_DECLARE(apr_status_t) apr_reslist_invalidate(apr_reslist_t *reslist,
+00133                                                  <span class="keywordtype">void</span> *resource);
 00134 
-00135 #ifdef __cplusplus
-00136 }
-00137 #endif
-00138 
-00141 #endif  <span class="comment">/* APR_HAS_THREADS */</span>
-00142 
-00143 #endif  <span class="comment">/* ! APR_RESLIST_H */</span>
-</div></pre><hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+00135 
+00136 #ifdef __cplusplus
+00137 }
+00138 #endif
+00139 
+00142 #endif  <span class="comment">/* APR_HAS_THREADS */</span>
+00143 
+00144 #endif  <span class="comment">/* ! APR_RESLIST_H */</span>
+</div></pre><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__reslist_8h.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__reslist_8h.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__reslist_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__reslist_8h.html Mon Feb  7 15:10:17 2005
@@ -1,11 +1,12 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>Apache Portable Runtime Utility Library: include/apr_reslist.h File Reference</title>
+<title>Apache Portable Runtime Utility Library: apr_reslist.h File Reference</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_reslist.h File Reference</h1>APR-UTIL Resource List Routines. <a href="#_details">More...</a>
+<h1>include/apr_reslist.h File Reference</h1>APR-UTIL Resource List Routines.  
+<a href="#_details">More...</a>
 <p>
 <code>#include "apr.h"</code><br>
 <code>#include "apu.h"</code><br>
@@ -42,8 +43,8 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR-UTIL Resource List Routines. 
 <p>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__rmm_8h-source.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__rmm_8h-source.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__rmm_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__rmm_8h-source.html Mon Feb  7 15:10:17 2005
@@ -3,72 +3,73 @@
 <title>Apache Portable Runtime Utility Library: include/apr_rmm.h Source File</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_rmm.h</h1><a href="apr__rmm_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2000-2004 The Apache Software Foundation</span>
-00002 <span class="comment"> *</span>
-00003 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
-00004 <span class="comment"> * you may not use this file except in compliance with the License.</span>
-00005 <span class="comment"> * You may obtain a copy of the License at</span>
-00006 <span class="comment"> *</span>
-00007 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
-00008 <span class="comment"> *</span>
-00009 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
-00010 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
-00011 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
-00012 <span class="comment"> * See the License for the specific language governing permissions and</span>
-00013 <span class="comment"> * limitations under the License.</span>
-00014 <span class="comment"> */</span>
-00015 
-00016 <span class="preprocessor">#ifndef APR_RMM_H</span>
-00017 <span class="preprocessor"></span><span class="preprocessor">#define APR_RMM_H</span>
-00018 <span class="preprocessor"></span>
-00028 <span class="preprocessor">#include "apr.h"</span>
-00029 <span class="preprocessor">#include "apr_pools.h"</span>
-00030 <span class="preprocessor">#include "apr_errno.h"</span>
-00031 <span class="preprocessor">#include "apu.h"</span>
-00032 <span class="preprocessor">#include "<a class="code" href="apr__anylock_8h.html">apr_anylock.h</a>"</span>
-00033 
-00034 <span class="preprocessor">#ifdef __cplusplus</span>
-00035 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
-00036 <span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span>
-00037 
-<a name="l00039"></a><a class="code" href="group___a_p_r___util___r_m_m.html#ga0">00039</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___r_m_m.html#ga0">apr_rmm_t</a> <a class="code" href="group___a_p_r___util___r_m_m.html#ga0">apr_rmm_t</a>;
-00040 
-<a name="l00042"></a><a class="code" href="group___a_p_r___util___r_m_m.html#ga1">00042</a> <span class="keyword">typedef</span> apr_size_t   <a class="code" href="group___a_p_r___util___r_m_m.html#ga1">apr_rmm_off_t</a>;
-00043 
-00052 APU_DECLARE(apr_status_t) apr_rmm_init(apr_rmm_t **rmm, <a class="code" href="structapr__anylock__t.html">apr_anylock_t</a> *lock,
-00053                                        <span class="keywordtype">void</span>* membuf, apr_size_t memsize, 
-00054                                        apr_pool_t *cont);
-00055 
-00060 APU_DECLARE(apr_status_t) apr_rmm_destroy(apr_rmm_t *rmm);
-00061 
-00069 APU_DECLARE(apr_status_t) apr_rmm_attach(apr_rmm_t **rmm, <a class="code" href="structapr__anylock__t.html">apr_anylock_t</a> *lock,
-00070                                          <span class="keywordtype">void</span>* membuf, apr_pool_t *cont);
-00071 
-00076 APU_DECLARE(apr_status_t) apr_rmm_detach(apr_rmm_t *rmm);
-00077 
-00083 APU_DECLARE(apr_rmm_off_t) apr_rmm_malloc(apr_rmm_t *rmm, apr_size_t reqsize);
-00084 
-00091 APU_DECLARE(apr_rmm_off_t) apr_rmm_realloc(apr_rmm_t *rmm, <span class="keywordtype">void</span> *entity, apr_size_t reqsize);
-00092 
-00098 APU_DECLARE(apr_rmm_off_t) apr_rmm_calloc(apr_rmm_t *rmm, apr_size_t reqsize);
-00099 
-00105 APU_DECLARE(apr_status_t) apr_rmm_free(apr_rmm_t *rmm, apr_rmm_off_t entity);
-00106 
-00112 APU_DECLARE(<span class="keywordtype">void</span> *) apr_rmm_addr_get(apr_rmm_t *rmm, apr_rmm_off_t entity);
-00113 
-00119 APU_DECLARE(apr_rmm_off_t) apr_rmm_offset_get(apr_rmm_t *rmm, <span class="keywordtype">void</span>* entity);
-00120 
-00125 APU_DECLARE(apr_size_t) apr_rmm_overhead_get(<span class="keywordtype">int</span> n);
-00126 
-00127 #ifdef __cplusplus
-00128 }
-00129 #endif
-00131 #endif  <span class="comment">/* ! APR_RMM_H */</span>
-00132 
-</div></pre><hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<h1>include/apr_rmm.h</h1><a href="apr__rmm_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as</span>
+00002 <span class="comment"> * applicable.</span>
+00003 <span class="comment"> *</span>
+00004 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
+00005 <span class="comment"> * you may not use this file except in compliance with the License.</span>
+00006 <span class="comment"> * You may obtain a copy of the License at</span>
+00007 <span class="comment"> *</span>
+00008 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
+00009 <span class="comment"> *</span>
+00010 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
+00011 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
+00012 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
+00013 <span class="comment"> * See the License for the specific language governing permissions and</span>
+00014 <span class="comment"> * limitations under the License.</span>
+00015 <span class="comment"> */</span>
+00016 
+00017 <span class="preprocessor">#ifndef APR_RMM_H</span>
+00018 <span class="preprocessor"></span><span class="preprocessor">#define APR_RMM_H</span>
+00019 <span class="preprocessor"></span>
+00029 <span class="preprocessor">#include "apr.h"</span>
+00030 <span class="preprocessor">#include "apr_pools.h"</span>
+00031 <span class="preprocessor">#include "apr_errno.h"</span>
+00032 <span class="preprocessor">#include "apu.h"</span>
+00033 <span class="preprocessor">#include "<a class="code" href="apr__anylock_8h.html">apr_anylock.h</a>"</span>
+00034 
+00035 <span class="preprocessor">#ifdef __cplusplus</span>
+00036 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
+00037 <span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span>
+00038 
+<a name="l00040"></a><a class="code" href="group___a_p_r___util___r_m_m.html#ga0">00040</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___r_m_m.html#ga0">apr_rmm_t</a> <a class="code" href="group___a_p_r___util___r_m_m.html#ga0">apr_rmm_t</a>;
+00041 
+<a name="l00043"></a><a class="code" href="group___a_p_r___util___r_m_m.html#ga1">00043</a> <span class="keyword">typedef</span> apr_size_t   <a class="code" href="group___a_p_r___util___r_m_m.html#ga1">apr_rmm_off_t</a>;
+00044 
+00055 APU_DECLARE(apr_status_t) apr_rmm_init(apr_rmm_t **rmm, <a class="code" href="structapr__anylock__t.html">apr_anylock_t</a> *lock,
+00056                                        <span class="keywordtype">void</span>* membuf, apr_size_t memsize, 
+00057                                        apr_pool_t *cont);
+00058 
+00063 APU_DECLARE(apr_status_t) apr_rmm_destroy(apr_rmm_t *rmm);
+00064 
+00072 APU_DECLARE(apr_status_t) apr_rmm_attach(apr_rmm_t **rmm, <a class="code" href="structapr__anylock__t.html">apr_anylock_t</a> *lock,
+00073                                          <span class="keywordtype">void</span>* membuf, apr_pool_t *cont);
+00074 
+00079 APU_DECLARE(apr_status_t) apr_rmm_detach(apr_rmm_t *rmm);
+00080 
+00086 APU_DECLARE(apr_rmm_off_t) apr_rmm_malloc(apr_rmm_t *rmm, apr_size_t reqsize);
+00087 
+00094 APU_DECLARE(apr_rmm_off_t) apr_rmm_realloc(apr_rmm_t *rmm, <span class="keywordtype">void</span> *entity, apr_size_t reqsize);
+00095 
+00101 APU_DECLARE(apr_rmm_off_t) apr_rmm_calloc(apr_rmm_t *rmm, apr_size_t reqsize);
+00102 
+00108 APU_DECLARE(apr_status_t) apr_rmm_free(apr_rmm_t *rmm, apr_rmm_off_t entity);
+00109 
+00116 APU_DECLARE(<span class="keywordtype">void</span> *) apr_rmm_addr_get(apr_rmm_t *rmm, apr_rmm_off_t entity);
+00117 
+00123 APU_DECLARE(apr_rmm_off_t) apr_rmm_offset_get(apr_rmm_t *rmm, <span class="keywordtype">void</span>* entity);
+00124 
+00129 APU_DECLARE(apr_size_t) apr_rmm_overhead_get(<span class="keywordtype">int</span> n);
+00130 
+00131 #ifdef __cplusplus
+00132 }
+00133 #endif
+00135 #endif  <span class="comment">/* ! APR_RMM_H */</span>
+00136 
+</div></pre><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__rmm_8h.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__rmm_8h.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__rmm_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__rmm_8h.html Mon Feb  7 15:10:17 2005
@@ -1,11 +1,12 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>Apache Portable Runtime Utility Library: include/apr_rmm.h File Reference</title>
+<title>Apache Portable Runtime Utility Library: apr_rmm.h File Reference</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_rmm.h File Reference</h1>APR-UTIL Relocatable Memory Management Routines. <a href="#_details">More...</a>
+<h1>include/apr_rmm.h File Reference</h1>APR-UTIL Relocatable Memory Management Routines.  
+<a href="#_details">More...</a>
 <p>
 <code>#include "apr.h"</code><br>
 <code>#include "apr_pools.h"</code><br>
@@ -48,8 +49,8 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR-UTIL Relocatable Memory Management Routines. 
 <p>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h-source.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h-source.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h-source.html Mon Feb  7 15:10:17 2005
@@ -3,81 +3,82 @@
 <title>Apache Portable Runtime Utility Library: include/apr_sdbm.h Source File</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_sdbm.h</h1><a href="apr__sdbm_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2000-2004 The Apache Software Foundation</span>
-00002 <span class="comment"> *</span>
-00003 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
-00004 <span class="comment"> * you may not use this file except in compliance with the License.</span>
-00005 <span class="comment"> * You may obtain a copy of the License at</span>
-00006 <span class="comment"> *</span>
-00007 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
-00008 <span class="comment"> *</span>
-00009 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
-00010 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
-00011 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
-00012 <span class="comment"> * See the License for the specific language governing permissions and</span>
-00013 <span class="comment"> * limitations under the License.</span>
-00014 <span class="comment"> */</span>
-00015 
-00016 <span class="comment">/*</span>
-00017 <span class="comment"> * sdbm - ndbm work-alike hashed database library</span>
-00018 <span class="comment"> * based on Per-Ake Larson's Dynamic Hashing algorithms. BIT 18 (1978).</span>
-00019 <span class="comment"> * author: oz@nexus.yorku.ca</span>
-00020 <span class="comment"> * status: ex-public domain</span>
-00021 <span class="comment"> */</span>
-00022 
-00023 <span class="preprocessor">#ifndef APR_SDBM_H</span>
-00024 <span class="preprocessor"></span><span class="preprocessor">#define APR_SDBM_H</span>
-00025 <span class="preprocessor"></span>
-00026 <span class="preprocessor">#include "apu.h"</span>
-00027 <span class="preprocessor">#include "apr_errno.h"</span>
-00028 <span class="preprocessor">#include "apr_file_io.h"</span>   <span class="comment">/* for apr_fileperms_t */</span>
-00029 
-<a name="l00043"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">00043</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">apr_sdbm_t</a> <a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">apr_sdbm_t</a>;
-00044 
-<a name="l00048"></a><a class="code" href="structapr__sdbm__datum__t.html">00048</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>{
-<a name="l00050"></a><a class="code" href="structapr__sdbm__datum__t.html#o0">00050</a>     <span class="keywordtype">char</span> *dptr;
-<a name="l00052"></a><a class="code" href="structapr__sdbm__datum__t.html#o1">00052</a>     <span class="keywordtype">int</span> dsize;
-00053 } <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a>;
-00054 
-00055 <span class="comment">/* The extensions used for the database files */</span>
-<a name="l00057"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga11">00057</a> <span class="preprocessor">#define APR_SDBM_DIRFEXT        ".dir"</span>
-00058 <span class="preprocessor"></span>
-<a name="l00059"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga12">00059</a> <span class="preprocessor">#define APR_SDBM_PAGFEXT        ".pag"</span>
-00060 <span class="preprocessor"></span>
-00061 <span class="comment">/* flags to sdbm_store */</span>
-<a name="l00062"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga13">00062</a> <span class="preprocessor">#define APR_SDBM_INSERT     0   </span>
-<a name="l00063"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga14">00063</a> <span class="preprocessor">#define APR_SDBM_REPLACE    1   </span>
-<a name="l00064"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga15">00064</a> <span class="preprocessor">#define APR_SDBM_INSERTDUP  2   </span>
-00084 <span class="preprocessor">APU_DECLARE(apr_status_t) apr_sdbm_open(apr_sdbm_t **db, const char *name, </span>
-00085 <span class="preprocessor"></span>                                        apr_int32_t mode, 
-00086                                         apr_fileperms_t perms, apr_pool_t *p);
-00087 
-00092 APU_DECLARE(apr_status_t) apr_sdbm_close(apr_sdbm_t *db);
-00093 
-00109 APU_DECLARE(apr_status_t) apr_sdbm_lock(apr_sdbm_t *db, <span class="keywordtype">int</span> type);
-00110 
-00115 APU_DECLARE(apr_status_t) apr_sdbm_unlock(apr_sdbm_t *db);
-00116 
-00123 APU_DECLARE(apr_status_t) apr_sdbm_fetch(apr_sdbm_t *db, 
-00124                                          <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> *value, 
-00125                                          <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> key);
-00126 
-00138 APU_DECLARE(apr_status_t) apr_sdbm_store(apr_sdbm_t *db, <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> key,
-00139                                          <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> value, <span class="keywordtype">int</span> opt);
-00140 
-00147 APU_DECLARE(apr_status_t) apr_sdbm_delete(apr_sdbm_t *db, 
-00148                                           const <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> key);
-00149 
-00159 APU_DECLARE(apr_status_t) apr_sdbm_firstkey(apr_sdbm_t *db, <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> *key);
-00160 
-00166 APU_DECLARE(apr_status_t) apr_sdbm_nextkey(apr_sdbm_t *db, <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> *key);
-00167 
-00172 APU_DECLARE(<span class="keywordtype">int</span>) apr_sdbm_rdonly(apr_sdbm_t *db);
-00174 #endif <span class="comment">/* APR_SDBM_H */</span>
-</div></pre><hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<h1>include/apr_sdbm.h</h1><a href="apr__sdbm_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as</span>
+00002 <span class="comment"> * applicable.</span>
+00003 <span class="comment"> *</span>
+00004 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
+00005 <span class="comment"> * you may not use this file except in compliance with the License.</span>
+00006 <span class="comment"> * You may obtain a copy of the License at</span>
+00007 <span class="comment"> *</span>
+00008 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
+00009 <span class="comment"> *</span>
+00010 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
+00011 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
+00012 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
+00013 <span class="comment"> * See the License for the specific language governing permissions and</span>
+00014 <span class="comment"> * limitations under the License.</span>
+00015 <span class="comment"> */</span>
+00016 
+00017 <span class="comment">/*</span>
+00018 <span class="comment"> * sdbm - ndbm work-alike hashed database library</span>
+00019 <span class="comment"> * based on Per-Ake Larson's Dynamic Hashing algorithms. BIT 18 (1978).</span>
+00020 <span class="comment"> * author: oz@nexus.yorku.ca</span>
+00021 <span class="comment"> * status: ex-public domain</span>
+00022 <span class="comment"> */</span>
+00023 
+00024 <span class="preprocessor">#ifndef APR_SDBM_H</span>
+00025 <span class="preprocessor"></span><span class="preprocessor">#define APR_SDBM_H</span>
+00026 <span class="preprocessor"></span>
+00027 <span class="preprocessor">#include "apu.h"</span>
+00028 <span class="preprocessor">#include "apr_errno.h"</span>
+00029 <span class="preprocessor">#include "apr_file_io.h"</span>   <span class="comment">/* for apr_fileperms_t */</span>
+00030 
+<a name="l00044"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">00044</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">apr_sdbm_t</a> <a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">apr_sdbm_t</a>;
+00045 
+<a name="l00049"></a><a class="code" href="structapr__sdbm__datum__t.html">00049</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>{
+<a name="l00051"></a><a class="code" href="structapr__sdbm__datum__t.html#o0">00051</a>     <span class="keywordtype">char</span> *dptr;
+<a name="l00053"></a><a class="code" href="structapr__sdbm__datum__t.html#o1">00053</a>     <span class="keywordtype">int</span> dsize;
+00054 } <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a>;
+00055 
+00056 <span class="comment">/* The extensions used for the database files */</span>
+<a name="l00058"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga11">00058</a> <span class="preprocessor">#define APR_SDBM_DIRFEXT        ".dir"</span>
+00059 <span class="preprocessor"></span>
+<a name="l00060"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga12">00060</a> <span class="preprocessor">#define APR_SDBM_PAGFEXT        ".pag"</span>
+00061 <span class="preprocessor"></span>
+00062 <span class="comment">/* flags to sdbm_store */</span>
+<a name="l00063"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga13">00063</a> <span class="preprocessor">#define APR_SDBM_INSERT     0   </span>
+<a name="l00064"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga14">00064</a> <span class="preprocessor">#define APR_SDBM_REPLACE    1   </span>
+<a name="l00065"></a><a class="code" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga15">00065</a> <span class="preprocessor">#define APR_SDBM_INSERTDUP  2   </span>
+00085 <span class="preprocessor">APU_DECLARE(apr_status_t) apr_sdbm_open(apr_sdbm_t **db, const char *name, </span>
+00086 <span class="preprocessor"></span>                                        apr_int32_t mode, 
+00087                                         apr_fileperms_t perms, apr_pool_t *p);
+00088 
+00093 APU_DECLARE(apr_status_t) apr_sdbm_close(apr_sdbm_t *db);
+00094 
+00110 APU_DECLARE(apr_status_t) apr_sdbm_lock(apr_sdbm_t *db, <span class="keywordtype">int</span> type);
+00111 
+00116 APU_DECLARE(apr_status_t) apr_sdbm_unlock(apr_sdbm_t *db);
+00117 
+00124 APU_DECLARE(apr_status_t) apr_sdbm_fetch(apr_sdbm_t *db, 
+00125                                          <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> *value, 
+00126                                          <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> key);
+00127 
+00139 APU_DECLARE(apr_status_t) apr_sdbm_store(apr_sdbm_t *db, <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> key,
+00140                                          <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> value, <span class="keywordtype">int</span> opt);
+00141 
+00148 APU_DECLARE(apr_status_t) apr_sdbm_delete(apr_sdbm_t *db, 
+00149                                           const <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> key);
+00150 
+00160 APU_DECLARE(apr_status_t) apr_sdbm_firstkey(apr_sdbm_t *db, <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> *key);
+00161 
+00167 APU_DECLARE(apr_status_t) apr_sdbm_nextkey(apr_sdbm_t *db, <a class="code" href="structapr__sdbm__datum__t.html">apr_sdbm_datum_t</a> *key);
+00168 
+00173 APU_DECLARE(<span class="keywordtype">int</span>) apr_sdbm_rdonly(apr_sdbm_t *db);
+00175 #endif <span class="comment">/* APR_SDBM_H */</span>
+</div></pre><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__sdbm_8h.html Mon Feb  7 15:10:17 2005
@@ -1,11 +1,12 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>Apache Portable Runtime Utility Library: include/apr_sdbm.h File Reference</title>
+<title>Apache Portable Runtime Utility Library: apr_sdbm.h File Reference</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_sdbm.h File Reference</h1>apr-util SDBM library <a href="#_details">More...</a>
+<h1>include/apr_sdbm.h File Reference</h1>apr-util SDBM library  
+<a href="#_details">More...</a>
 <p>
 <code>#include "apu.h"</code><br>
 <code>#include "apr_errno.h"</code><br>
@@ -22,11 +23,11 @@
 
 <tr><td class="memItemLeft" nowrap align=right valign=top>#define&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga12">APR_SDBM_PAGFEXT</a>&nbsp;&nbsp;&nbsp;".pag"</td></tr>
 
-<tr><td class="memItemLeft" nowrap align=right valign=top>#define&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga13">APR_SDBM_INSERT</a>&nbsp;&nbsp;&nbsp;0</td></tr>
+<tr><td class="memItemLeft" nowrap align=right valign=top>#define&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga13">APR_SDBM_INSERT</a>&nbsp;&nbsp;&nbsp;0   /**&lt; Insert */</td></tr>
 
-<tr><td class="memItemLeft" nowrap align=right valign=top>#define&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga14">APR_SDBM_REPLACE</a>&nbsp;&nbsp;&nbsp;1</td></tr>
+<tr><td class="memItemLeft" nowrap align=right valign=top>#define&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga14">APR_SDBM_REPLACE</a>&nbsp;&nbsp;&nbsp;1   /**&lt; Replace */</td></tr>
 
-<tr><td class="memItemLeft" nowrap align=right valign=top>#define&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga15">APR_SDBM_INSERTDUP</a>&nbsp;&nbsp;&nbsp;2</td></tr>
+<tr><td class="memItemLeft" nowrap align=right valign=top>#define&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga15">APR_SDBM_INSERTDUP</a>&nbsp;&nbsp;&nbsp;2   /**&lt; Insert with duplicates */</td></tr>
 
 <tr><td colspan=2><br><h2>Typedefs</h2></td></tr>
 <tr><td class="memItemLeft" nowrap align=right valign=top>typedef <a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">apr_sdbm_t</a>&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">apr_sdbm_t</a></td></tr>
@@ -56,8 +57,8 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 apr-util SDBM library 
 <p>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__sha1_8h-source.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__sha1_8h-source.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__sha1_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__sha1_8h-source.html Mon Feb  7 15:10:17 2005
@@ -3,75 +3,76 @@
 <title>Apache Portable Runtime Utility Library: include/apr_sha1.h Source File</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_sha1.h</h1><a href="apr__sha1_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2001-2004 The Apache Software Foundation</span>
-00002 <span class="comment"> *</span>
-00003 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
-00004 <span class="comment"> * you may not use this file except in compliance with the License.</span>
-00005 <span class="comment"> * You may obtain a copy of the License at</span>
-00006 <span class="comment"> *</span>
-00007 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
-00008 <span class="comment"> *</span>
-00009 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
-00010 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
-00011 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
-00012 <span class="comment"> * See the License for the specific language governing permissions and</span>
-00013 <span class="comment"> * limitations under the License.</span>
-00014 <span class="comment"> */</span>
-00015 <span class="comment">/* NIST Secure Hash Algorithm</span>
-00016 <span class="comment"> *      heavily modified by Uwe Hollerbach uh@alumni.caltech edu</span>
-00017 <span class="comment"> *      from Peter C. Gutmann's implementation as found in</span>
-00018 <span class="comment"> *      Applied Cryptography by Bruce Schneier</span>
-00019 <span class="comment"> *      This code is hereby placed in the public domain</span>
-00020 <span class="comment"> */</span>
-00021 
-00022 <span class="preprocessor">#ifndef APR_SHA1_H</span>
-00023 <span class="preprocessor"></span><span class="preprocessor">#define APR_SHA1_H</span>
-00024 <span class="preprocessor"></span>
-00025 <span class="preprocessor">#include "apu.h"</span>
-00026 <span class="preprocessor">#include "apr_general.h"</span>
-00027 
-00028 <span class="preprocessor">#ifdef __cplusplus</span>
-00029 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
-00030 <span class="preprocessor">#endif</span>
-00031 <span class="preprocessor"></span>
-<a name="l00038"></a><a class="code" href="apr__sha1_8h.html#a0">00038</a> <span class="preprocessor">#define APR_SHA1_DIGESTSIZE 20</span>
-00039 <span class="preprocessor"></span>
-<a name="l00044"></a><a class="code" href="apr__sha1_8h.html#a1">00044</a> <span class="preprocessor">#define APR_SHA1PW_ID "{SHA}"</span>
-00045 <span class="preprocessor"></span>
-<a name="l00047"></a><a class="code" href="apr__sha1_8h.html#a2">00047</a> <span class="preprocessor">#define APR_SHA1PW_IDLEN 5</span>
-00048 <span class="preprocessor"></span>
-<a name="l00050"></a><a class="code" href="apr__sha1_8h.html#a3">00050</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structapr__sha1__ctx__t.html">apr_sha1_ctx_t</a> <a class="code" href="apr__sha1_8h.html#a3">apr_sha1_ctx_t</a>;
-00051 
-<a name="l00055"></a><a class="code" href="structapr__sha1__ctx__t.html">00055</a> <span class="keyword">struct </span><a class="code" href="apr__sha1_8h.html#a3">apr_sha1_ctx_t</a> {
-<a name="l00057"></a><a class="code" href="structapr__sha1__ctx__t.html#o0">00057</a>     apr_uint32_t <a class="code" href="structapr__sha1__ctx__t.html#o0">digest</a>[5];
-<a name="l00059"></a><a class="code" href="structapr__sha1__ctx__t.html#o1">00059</a>     apr_uint32_t <a class="code" href="structapr__sha1__ctx__t.html#o1">count_lo</a>, <a class="code" href="structapr__sha1__ctx__t.html#o2">count_hi</a>;
-<a name="l00061"></a><a class="code" href="structapr__sha1__ctx__t.html#o3">00061</a>     apr_uint32_t <a class="code" href="structapr__sha1__ctx__t.html#o3">data</a>[16];
-<a name="l00063"></a><a class="code" href="structapr__sha1__ctx__t.html#o4">00063</a>     <span class="keywordtype">int</span> <a class="code" href="structapr__sha1__ctx__t.html#o4">local</a>;
-00064 };
-00065 
-00081 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_base64(const <span class="keywordtype">char</span> *clear, <span class="keywordtype">int</span> len, <span class="keywordtype">char</span> *out);
-00082 
-00087 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_init(apr_sha1_ctx_t *context);
-00088 
-00095 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_update(apr_sha1_ctx_t *context, const <span class="keywordtype">char</span> *input,
-00096                                 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> inputLen);
-00097 
-00104 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_update_binary(apr_sha1_ctx_t *context,
-00105                                        const <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> *input,
-00106                                        <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> inputLen);
-00107 
-00113 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_final(<span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> digest[APR_SHA1_DIGESTSIZE],
-00114                                apr_sha1_ctx_t *context);
-00115 
-00116 #ifdef __cplusplus
-00117 }
-00118 #endif
-00119 
-00120 #endif  <span class="comment">/* APR_SHA1_H */</span>
-</div></pre><hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<h1>include/apr_sha1.h</h1><a href="apr__sha1_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2001-2005 The Apache Software Foundation or its licensors, as</span>
+00002 <span class="comment"> * applicable.</span>
+00003 <span class="comment"> *</span>
+00004 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
+00005 <span class="comment"> * you may not use this file except in compliance with the License.</span>
+00006 <span class="comment"> * You may obtain a copy of the License at</span>
+00007 <span class="comment"> *</span>
+00008 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
+00009 <span class="comment"> *</span>
+00010 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
+00011 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
+00012 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
+00013 <span class="comment"> * See the License for the specific language governing permissions and</span>
+00014 <span class="comment"> * limitations under the License.</span>
+00015 <span class="comment"> */</span>
+00016 <span class="comment">/* NIST Secure Hash Algorithm</span>
+00017 <span class="comment"> *      heavily modified by Uwe Hollerbach uh@alumni.caltech edu</span>
+00018 <span class="comment"> *      from Peter C. Gutmann's implementation as found in</span>
+00019 <span class="comment"> *      Applied Cryptography by Bruce Schneier</span>
+00020 <span class="comment"> *      This code is hereby placed in the public domain</span>
+00021 <span class="comment"> */</span>
+00022 
+00023 <span class="preprocessor">#ifndef APR_SHA1_H</span>
+00024 <span class="preprocessor"></span><span class="preprocessor">#define APR_SHA1_H</span>
+00025 <span class="preprocessor"></span>
+00026 <span class="preprocessor">#include "apu.h"</span>
+00027 <span class="preprocessor">#include "apr_general.h"</span>
+00028 
+00029 <span class="preprocessor">#ifdef __cplusplus</span>
+00030 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
+00031 <span class="preprocessor">#endif</span>
+00032 <span class="preprocessor"></span>
+<a name="l00039"></a><a class="code" href="apr__sha1_8h.html#a0">00039</a> <span class="preprocessor">#define APR_SHA1_DIGESTSIZE 20</span>
+00040 <span class="preprocessor"></span>
+<a name="l00045"></a><a class="code" href="apr__sha1_8h.html#a1">00045</a> <span class="preprocessor">#define APR_SHA1PW_ID "{SHA}"</span>
+00046 <span class="preprocessor"></span>
+<a name="l00048"></a><a class="code" href="apr__sha1_8h.html#a2">00048</a> <span class="preprocessor">#define APR_SHA1PW_IDLEN 5</span>
+00049 <span class="preprocessor"></span>
+<a name="l00051"></a><a class="code" href="apr__sha1_8h.html#a3">00051</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structapr__sha1__ctx__t.html">apr_sha1_ctx_t</a> <a class="code" href="apr__sha1_8h.html#a3">apr_sha1_ctx_t</a>;
+00052 
+<a name="l00056"></a><a class="code" href="structapr__sha1__ctx__t.html">00056</a> <span class="keyword">struct </span><a class="code" href="apr__sha1_8h.html#a3">apr_sha1_ctx_t</a> {
+<a name="l00058"></a><a class="code" href="structapr__sha1__ctx__t.html#o0">00058</a>     apr_uint32_t <a class="code" href="structapr__sha1__ctx__t.html#o0">digest</a>[5];
+<a name="l00060"></a><a class="code" href="structapr__sha1__ctx__t.html#o1">00060</a>     apr_uint32_t <a class="code" href="structapr__sha1__ctx__t.html#o1">count_lo</a>, <a class="code" href="structapr__sha1__ctx__t.html#o2">count_hi</a>;
+<a name="l00062"></a><a class="code" href="structapr__sha1__ctx__t.html#o3">00062</a>     apr_uint32_t <a class="code" href="structapr__sha1__ctx__t.html#o3">data</a>[16];
+<a name="l00064"></a><a class="code" href="structapr__sha1__ctx__t.html#o4">00064</a>     <span class="keywordtype">int</span> <a class="code" href="structapr__sha1__ctx__t.html#o4">local</a>;
+00065 };
+00066 
+00082 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_base64(const <span class="keywordtype">char</span> *clear, <span class="keywordtype">int</span> len, <span class="keywordtype">char</span> *out);
+00083 
+00088 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_init(apr_sha1_ctx_t *context);
+00089 
+00096 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_update(apr_sha1_ctx_t *context, const <span class="keywordtype">char</span> *input,
+00097                                 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> inputLen);
+00098 
+00105 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_update_binary(apr_sha1_ctx_t *context,
+00106                                        const <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> *input,
+00107                                        <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> inputLen);
+00108 
+00114 APU_DECLARE(<span class="keywordtype">void</span>) apr_sha1_final(<span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> digest[APR_SHA1_DIGESTSIZE],
+00115                                apr_sha1_ctx_t *context);
+00116 
+00117 #ifdef __cplusplus
+00118 }
+00119 #endif
+00120 
+00121 #endif  <span class="comment">/* APR_SHA1_H */</span>
+</div></pre><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__sha1_8h.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__sha1_8h.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__sha1_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__sha1_8h.html Mon Feb  7 15:10:17 2005
@@ -1,11 +1,12 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>Apache Portable Runtime Utility Library: include/apr_sha1.h File Reference</title>
+<title>Apache Portable Runtime Utility Library: apr_sha1.h File Reference</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_sha1.h File Reference</h1>APR-UTIL SHA1 library. <a href="#_details">More...</a>
+<h1>include/apr_sha1.h File Reference</h1>APR-UTIL SHA1 library.  
+<a href="#_details">More...</a>
 <p>
 <code>#include "apu.h"</code><br>
 <code>#include "apr_general.h"</code><br>
@@ -364,8 +365,8 @@
     </td>
   </tr>
 </table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h-source.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h-source.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h-source.html Mon Feb  7 15:10:17 2005
@@ -3,60 +3,61 @@
 <title>Apache Portable Runtime Utility Library: include/apr_strmatch.h Source File</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_strmatch.h</h1><a href="apr__strmatch_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2002-2004 The Apache Software Foundation</span>
-00002 <span class="comment"> *</span>
-00003 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
-00004 <span class="comment"> * you may not use this file except in compliance with the License.</span>
-00005 <span class="comment"> * You may obtain a copy of the License at</span>
-00006 <span class="comment"> *</span>
-00007 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
-00008 <span class="comment"> *</span>
-00009 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
-00010 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
-00011 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
-00012 <span class="comment"> * See the License for the specific language governing permissions and</span>
-00013 <span class="comment"> * limitations under the License.</span>
-00014 <span class="comment"> */</span>
-00015 
-00016 <span class="preprocessor">#ifndef APR_STRMATCH_H</span>
-00017 <span class="preprocessor"></span><span class="preprocessor">#define APR_STRMATCH_H</span>
-00018 <span class="preprocessor"></span>
-00023 <span class="preprocessor">#include "apu.h"</span>
-00024 <span class="preprocessor">#include "apr_pools.h"</span>
-00025 
-00026 <span class="preprocessor">#ifdef __cplusplus</span>
-00027 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
-00028 <span class="preprocessor">#endif</span>
-00029 <span class="preprocessor"></span>
-<a name="l00037"></a><a class="code" href="group___a_p_r___util___str_match.html#ga0">00037</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structapr__strmatch__pattern.html">apr_strmatch_pattern</a> <a class="code" href="group___a_p_r___util___str_match.html#ga0">apr_strmatch_pattern</a>;
-00038 
-<a name="l00042"></a><a class="code" href="structapr__strmatch__pattern.html">00042</a> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___str_match.html#ga0">apr_strmatch_pattern</a> {
-00044     <span class="keyword">const</span> <span class="keywordtype">char</span> *(*compare)(<span class="keyword">const</span> <a class="code" href="group___a_p_r___util___str_match.html#ga0">apr_strmatch_pattern</a> *this_pattern,
-00045                            <span class="keyword">const</span> <span class="keywordtype">char</span> *s, apr_size_t slen);
-<a name="l00046"></a><a class="code" href="structapr__strmatch__pattern.html#o1">00046</a>     <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="structapr__strmatch__pattern.html#o1">pattern</a>;    
-<a name="l00047"></a><a class="code" href="structapr__strmatch__pattern.html#o2">00047</a>     apr_size_t <a class="code" href="structapr__strmatch__pattern.html#o2">length</a>;      
-<a name="l00048"></a><a class="code" href="structapr__strmatch__pattern.html#o3">00048</a>     <span class="keywordtype">void</span> *<a class="code" href="structapr__strmatch__pattern.html#o3">context</a>;          
-00049 };
-00050 
-00051 <span class="preprocessor">#if defined(DOXYGEN)</span>
-00052 <span class="preprocessor"></span>
-00060 APU_DECLARE(<span class="keyword">const</span> <span class="keywordtype">char</span> *) apr_strmatch(const apr_strmatch_pattern *pattern,
-00061                                        const <span class="keywordtype">char</span> *s, apr_size_t slen);
-00062 #else
-00063 #define apr_strmatch(pattern, s, slen) (*((pattern)-&gt;compare))((pattern), (s), (slen))
-00064 #endif
-00065 
-00073 APU_DECLARE(const apr_strmatch_pattern *) apr_strmatch_precompile(apr_pool_t *p, const <span class="keywordtype">char</span> *s, <span class="keywordtype">int</span> case_sensitive);
-00074 
-00076 #ifdef __cplusplus
-00077 }
-00078 #endif
-00079 
-00080 #endif  <span class="comment">/* !APR_STRMATCH_H */</span>
-</div></pre><hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<h1>include/apr_strmatch.h</h1><a href="apr__strmatch_8h.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/* Copyright 2002-2005 The Apache Software Foundation or its licensors, as</span>
+00002 <span class="comment"> * applicable.</span>
+00003 <span class="comment"> *</span>
+00004 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
+00005 <span class="comment"> * you may not use this file except in compliance with the License.</span>
+00006 <span class="comment"> * You may obtain a copy of the License at</span>
+00007 <span class="comment"> *</span>
+00008 <span class="comment"> *     http://www.apache.org/licenses/LICENSE-2.0</span>
+00009 <span class="comment"> *</span>
+00010 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
+00011 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
+00012 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
+00013 <span class="comment"> * See the License for the specific language governing permissions and</span>
+00014 <span class="comment"> * limitations under the License.</span>
+00015 <span class="comment"> */</span>
+00016 
+00017 <span class="preprocessor">#ifndef APR_STRMATCH_H</span>
+00018 <span class="preprocessor"></span><span class="preprocessor">#define APR_STRMATCH_H</span>
+00019 <span class="preprocessor"></span>
+00024 <span class="preprocessor">#include "apu.h"</span>
+00025 <span class="preprocessor">#include "apr_pools.h"</span>
+00026 
+00027 <span class="preprocessor">#ifdef __cplusplus</span>
+00028 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
+00029 <span class="preprocessor">#endif</span>
+00030 <span class="preprocessor"></span>
+<a name="l00038"></a><a class="code" href="group___a_p_r___util___str_match.html#ga0">00038</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structapr__strmatch__pattern.html">apr_strmatch_pattern</a> <a class="code" href="group___a_p_r___util___str_match.html#ga0">apr_strmatch_pattern</a>;
+00039 
+<a name="l00043"></a><a class="code" href="structapr__strmatch__pattern.html">00043</a> <span class="keyword">struct </span><a class="code" href="group___a_p_r___util___str_match.html#ga0">apr_strmatch_pattern</a> {
+00045     <span class="keyword">const</span> <span class="keywordtype">char</span> *(*compare)(<span class="keyword">const</span> <a class="code" href="group___a_p_r___util___str_match.html#ga0">apr_strmatch_pattern</a> *this_pattern,
+00046                            <span class="keyword">const</span> <span class="keywordtype">char</span> *s, apr_size_t slen);
+<a name="l00047"></a><a class="code" href="structapr__strmatch__pattern.html#o1">00047</a>     <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="structapr__strmatch__pattern.html#o1">pattern</a>;    
+<a name="l00048"></a><a class="code" href="structapr__strmatch__pattern.html#o2">00048</a>     apr_size_t <a class="code" href="structapr__strmatch__pattern.html#o2">length</a>;      
+<a name="l00049"></a><a class="code" href="structapr__strmatch__pattern.html#o3">00049</a>     <span class="keywordtype">void</span> *<a class="code" href="structapr__strmatch__pattern.html#o3">context</a>;          
+00050 };
+00051 
+00052 <span class="preprocessor">#if defined(DOXYGEN)</span>
+00053 <span class="preprocessor"></span>
+00061 APU_DECLARE(<span class="keyword">const</span> <span class="keywordtype">char</span> *) apr_strmatch(const apr_strmatch_pattern *pattern,
+00062                                        const <span class="keywordtype">char</span> *s, apr_size_t slen);
+00063 #else
+00064 #define apr_strmatch(pattern, s, slen) (*((pattern)-&gt;compare))((pattern), (s), (slen))
+00065 #endif
+00066 
+00074 APU_DECLARE(const apr_strmatch_pattern *) apr_strmatch_precompile(apr_pool_t *p, const <span class="keywordtype">char</span> *s, <span class="keywordtype">int</span> case_sensitive);
+00075 
+00077 #ifdef __cplusplus
+00078 }
+00079 #endif
+00080 
+00081 #endif  <span class="comment">/* !APR_STRMATCH_H */</span>
+</div></pre><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h.html
URL: http://svn.apache.org/viewcvs/apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h.html?view=diff&r1=151767&r2=151768
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h.html Mon Feb  7 15:10:17 2005
@@ -1,11 +1,12 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>Apache Portable Runtime Utility Library: include/apr_strmatch.h File Reference</title>
+<title>Apache Portable Runtime Utility Library: apr_strmatch.h File Reference</title>
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.3.8 -->
+<!-- Generated by Doxygen 1.3.7 -->
 <div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a></div>
-<h1>include/apr_strmatch.h File Reference</h1>APR-UTIL string matching routines. <a href="#_details">More...</a>
+<h1>include/apr_strmatch.h File Reference</h1>APR-UTIL string matching routines.  
+<a href="#_details">More...</a>
 <p>
 <code>#include "apu.h"</code><br>
 <code>#include "apr_pools.h"</code><br>
@@ -28,8 +29,8 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR-UTIL string matching routines. 
 <p>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by
+<hr size="1"><address style="align: right;"><small>Generated on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.7 </small></address>
 </body>
 </html>