From commits-return-6574-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Mon Feb 07 23:12:11 2005 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 15246 invoked from network); 7 Feb 2005 23:12:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 7 Feb 2005 23:12:07 -0000 Received: (qmail 22347 invoked by uid 500); 7 Feb 2005 23:12:03 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 22227 invoked by uid 500); 7 Feb 2005 23:12:02 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list commits@apr.apache.org Received: (qmail 22136 invoked by uid 99); 7 Feb 2005 23:12:01 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 07 Feb 2005 15:11:56 -0800 Received: (qmail 14777 invoked by uid 65534); 7 Feb 2005 23:11:54 -0000 Message-ID: <20050207231154.14776.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Mon, 07 Feb 2005 23:11:54 -0000 Subject: svn commit: r151768 [9/47] - in apr/site/trunk/docs/docs/apr: ./ iconv/ util/ To: commits@apr.apache.org From: jerenkrantz@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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__r= eslist_8h-source.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 @@ Apache Portable Runtime Utility Library: include/apr_reslist.h Sour= ce File - + -

include/apr_reslist.h

Go to the d= ocumentation of this file.
00001 /* Copyright 2000-2004 The Apache Software Foundation -00002 * -00003 * Licensed under the Apache License, Versio= n 2.0 (the "License"); -00004 * you may not use this file except in compl= iance with the License. -00005 * You may obtain a copy of the License at -00006 * -00007 * http://www.apache.org/licenses/LICENS= E-2.0 -00008 * -00009 * Unless required by applicable law or agre= ed to in writing, software -00010 * distributed under the License is distribu= ted on an "AS IS" BASIS, -00011 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. -00012 * See the License for the specific language= governing permissions and -00013 * limitations under the License. -00014 */ -00015=20 -00016 #ifndef APR_RESLIST_H -00017 #de= fine APR_RESLIST_H -00018 -00024 #include "apr.h" -00025 #include "apu.h" -00026 #include "apr_pools.h" -00027 #include "apr_errno.h" -00028 #include "apr_time.h" -00029=20 -00030 #if APR_HAS_THREADS -00031 -00038 #ifdef __cplusplus -00039 extern "C" { -00040 #endif /= * __cplusplus */ -00041=20 -00043 typedef struct apr_reslist_t apr_reslist_t; -00044=20 -00045 /* Generic constructor called by resource li= st when it needs to create a -00046 * resource. -00047 * @param resource opaque resource -00048 * @param param flags -00049 * @param pool Pool -00050 */ -00051 typedef apr_status_t (*apr_reslist_co= nstructor)(void **resource, void *params, -00052 apr_pool_t *pool); -00053=20 -00054 /* Generic destructor called by resource lis= t when it needs to destroy a -00055 * resource. -00056 * @param resource opaque resource -00057 * @param param flags -00058 * @param pool Pool -00059 */ -00060 typedef apr_status_t (*apr_reslist_de= structor)(void *resource, void *params, -00061 apr_pool_t *pool); -00062=20 -00082 APU_DECLARE(apr_status_t) apr_reslist_create(apr_reslist_t **reslist, -00083 int min, int smax, int hmax, -00084 apr_interval_time_t ttl, -00085 apr_reslist_constructor= con, -00086 apr_reslist_destructor = de, -00087 void *params, -00088 apr_pool_t *pool); -00089=20 -00101 APU_DECLARE(apr_status_t) apr_reslist_destroy(apr_reslist_t *reslist= ); -00102=20 -00108 APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist, -00109 void **resource); -00110=20 -00114 APU_DECLARE(apr_status_t) apr_reslist_release(apr_reslist_t *reslist, -00115 void *resource); -00116=20 -00123 APU_DECLARE(void) apr_reslist_tim= eout_set(apr_reslist_t *reslist, -00124 apr_interval_time_t timeou= t); -00125=20 -00131 APU_DECLARE(apr_status_t) apr_reslist_invalidate(apr_reslist_t *resl= ist, -00132 void *resource); -00133=20 +

include/apr_reslist.h

Go to the d= ocumentation of this file.
00001 /* Copyright 2000-2005 The Apache Software Foundation or its = licensors, as +00002 * applicable. +00003 * +00004 * Licensed under the Apache License, Versio= n 2.0 (the "License"); +00005 * you may not use this file except in compl= iance with the License. +00006 * You may obtain a copy of the License at +00007 * +00008 * http://www.apache.org/licenses/LICENS= E-2.0 +00009 * +00010 * Unless required by applicable law or agre= ed to in writing, software +00011 * distributed under the License is distribu= ted on an "AS IS" BASIS, +00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. +00013 * See the License for the specific language= governing permissions and +00014 * limitations under the License. +00015 */ +00016=20 +00017 #ifndef APR_RESLIST_H +00018 #de= fine APR_RESLIST_H +00019 +00025 #include "apr.h" +00026 #include "apu.h" +00027 #include "apr_pools.h" +00028 #include "apr_errno.h" +00029 #include "apr_time.h" +00030=20 +00031 #if APR_HAS_THREADS +00032 +00039 #ifdef __cplusplus +00040 extern "C" { +00041 #endif /= * __cplusplus */ +00042=20 +00044 typedef struct apr_reslist_t apr_reslist_t; +00045=20 +00046 /* Generic constructor called by resource li= st when it needs to create a +00047 * resource. +00048 * @param resource opaque resource +00049 * @param param flags +00050 * @param pool Pool +00051 */ +00052 typedef apr_status_t (*apr_reslist_co= nstructor)(void **resource, void *params, +00053 apr_pool_t *pool); +00054=20 +00055 /* Generic destructor called by resource lis= t when it needs to destroy a +00056 * resource. +00057 * @param resource opaque resource +00058 * @param param flags +00059 * @param pool Pool +00060 */ +00061 typedef apr_status_t (*apr_reslist_de= structor)(void *resource, void *params, +00062 apr_pool_t *pool); +00063=20 +00083 APU_DECLARE(apr_status_t) apr_reslist_create(apr_reslist_t **reslist, +00084 int min, int smax, int hmax, +00085 apr_interval_time_t ttl, +00086 apr_reslist_constructor= con, +00087 apr_reslist_destructor = de, +00088 void *params, +00089 apr_pool_t *pool); +00090=20 +00102 APU_DECLARE(apr_status_t) apr_reslist_destroy(apr_reslist_t *reslist= ); +00103=20 +00109 APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist, +00110 void **resource); +00111=20 +00115 APU_DECLARE(apr_status_t) apr_reslist_release(apr_reslist_t *reslist, +00116 void *resource); +00117=20 +00124 APU_DECLARE(void) apr_reslist_tim= eout_set(apr_reslist_t *reslist, +00125 apr_interval_time_t timeou= t); +00126=20 +00132 APU_DECLARE(apr_status_t) apr_reslist_invalidate(apr_reslist_t *resl= ist, +00133 void *resource); 00134=20 -00135 #ifdef __cplusplus -00136 } -00137 #endif -00138=20 -00141 #endif /* APR_HAS_THREADS */ -00142=20 -00143 #endif /* ! APR_RESLIST_H */ -

Generat= ed on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +00135=20 +00136 #ifdef __cplusplus +00137 } +00138 #endif +00139=20 +00142 #endif /* APR_HAS_THREADS */ +00143=20 +00144 #endif /* ! APR_RESLIST_H */ +

Generat= ed on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by -3D"doxygen"= 1.3.8
+3D"doxygen"= 1.3.7 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__r= eslist_8h.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 @@ -Apache Portable Runtime Utility Library: include/apr_reslist.h File= Reference +Apache Portable Runtime Utility Library: apr_reslist.h File Referen= ce - + -

include/apr_reslist.h File Reference

APR-UTIL Resource List Routin= es. More... +

include/apr_reslist.h File Reference

APR-UTIL Resource List Routin= es. =20 +More...

#include "apr.h"
#include "apu.h"
@@ -42,8 +43,8 @@


Detailed Description

APR-UTIL Resource List Routines.=20

-


Generated on Wed Se= p 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +
Generated on Mon Fe= b 7 13:19:18 2005 for Apache Portable Runtime Utility Library by -3D"doxygen"= 1.3.8
+3D"doxygen"= 1.3.7
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__r= mm_8h-source.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 @@ Apache Portable Runtime Utility Library: include/apr_rmm.h Source F= ile - + -

include/apr_rmm.h

Go to the documenta= tion of this file.
00001 /* Copyright 2000-2004 The Apache Software Foundation -00002 * -00003 * Licensed under the Apache License, Versio= n 2.0 (the "License"); -00004 * you may not use this file except in compl= iance with the License. -00005 * You may obtain a copy of the License at -00006 * -00007 * http://www.apache.org/licenses/LICENS= E-2.0 -00008 * -00009 * Unless required by applicable law or agre= ed to in writing, software -00010 * distributed under the License is distribu= ted on an "AS IS" BASIS, -00011 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. -00012 * See the License for the specific language= governing permissions and -00013 * limitations under the License. -00014 */ -00015=20 -00016 #ifndef APR_RMM_H -00017 #de= fine APR_RMM_H -00018 -00028 #include "apr.h" -00029 #include "apr_pools.h" -00030 #include "apr_errno.h" -00031 #include "apu.h" -00032 #include "apr_anylock.h" -00033=20 -00034 #ifdef __cplusplus -00035 extern "C" { -00036 #endif /= * __cplusplus */ -00037=20 -00039 typedef struct apr_rmm_t apr_rmm_t; -00040=20 -00042 typedef apr_size_t = apr_rmm_o= ff_t; -00043=20 -00052 APU_DECLARE(apr_status_t) apr_rmm_init(apr_rmm_t **rmm, apr_anylock_t *lock, -00053 v= oid* membuf, apr_size_t memsize,=20 -00054 apr_pool_t *cont); -00055=20 -00060 APU_DECLARE(apr_status_t) apr_rmm_destroy(apr_rmm_t *rmm); -00061=20 -00069 APU_DECLARE(apr_status_t) apr_rmm_attach(apr_rmm_t **rmm, apr_anylock_t *lock, -00070 void* membuf, apr_pool_t *cont); -00071=20 -00076 APU_DECLARE(apr_status_t) apr_rmm_detach(apr_rmm_t *rmm); -00077=20 -00083 APU_DECLARE(apr_rmm_off_t) apr_rmm_malloc(apr_rmm_t *rmm, apr_size_t= reqsize); -00084=20 -00091 APU_DECLARE(apr_rmm_off_t) apr_rmm_realloc(apr_rmm_t *rmm, void *entity, apr_size_t reqsize); -00092=20 -00098 APU_DECLARE(apr_rmm_off_t) apr_rmm_calloc(apr_rmm_t *rmm, apr_size_t= reqsize); -00099=20 -00105 APU_DECLARE(apr_status_t) apr_rmm_free(apr_rmm_t *rmm, apr_rmm_off_t= entity); -00106=20 -00112 APU_DECLARE(void *) apr_rmm_addr_= get(apr_rmm_t *rmm, apr_rmm_off_t entity); -00113=20 -00119 APU_DECLARE(apr_rmm_off_t) apr_rmm_offset_get(apr_rmm_t *rmm, void* entity); -00120=20 -00125 APU_DECLARE(apr_size_t) apr_rmm_overhead_get(int n); -00126=20 -00127 #ifdef __cplusplus -00128 } -00129 #endif -00131 #endif /* ! APR_RMM_H */ -00132=20 -

Generat= ed on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +

include/apr_rmm.h

Go to the documenta= tion of this file.
00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensor= s, as +00002 * applicable. +00003 * +00004 * Licensed under the Apache License, Versio= n 2.0 (the "License"); +00005 * you may not use this file except in compl= iance with the License. +00006 * You may obtain a copy of the License at +00007 * +00008 * http://www.apache.org/licenses/LICENS= E-2.0 +00009 * +00010 * Unless required by applicable law or agre= ed to in writing, software +00011 * distributed under the License is distribu= ted on an "AS IS" BASIS, +00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. +00013 * See the License for the specific language= governing permissions and +00014 * limitations under the License. +00015 */ +00016=20 +00017 #ifndef APR_RMM_H +00018 #de= fine APR_RMM_H +00019 +00029 #include "apr.h" +00030 #include "apr_pools.h" +00031 #include "apr_errno.h" +00032 #include "apu.h" +00033 #include "apr_anylock.h" +00034=20 +00035 #ifdef __cplusplus +00036 extern "C" { +00037 #endif /= * __cplusplus */ +00038=20 +00040 typedef struct apr_rmm_t apr_rmm_t; +00041=20 +00043 typedef apr_size_t = apr_rmm_o= ff_t; +00044=20 +00055 APU_DECLARE(apr_status_t) apr_rmm_init(apr_rmm_t **rmm, apr_anylock_t *lock, +00056 v= oid* membuf, apr_size_t memsize,=20 +00057 apr_pool_t *cont); +00058=20 +00063 APU_DECLARE(apr_status_t) apr_rmm_destroy(apr_rmm_t *rmm); +00064=20 +00072 APU_DECLARE(apr_status_t) apr_rmm_attach(apr_rmm_t **rmm, apr_anylock_t *lock, +00073 void* membuf, apr_pool_t *cont); +00074=20 +00079 APU_DECLARE(apr_status_t) apr_rmm_detach(apr_rmm_t *rmm); +00080=20 +00086 APU_DECLARE(apr_rmm_off_t) apr_rmm_malloc(apr_rmm_t *rmm, apr_size_t= reqsize); +00087=20 +00094 APU_DECLARE(apr_rmm_off_t) apr_rmm_realloc(apr_rmm_t *rmm, void *entity, apr_size_t reqsize); +00095=20 +00101 APU_DECLARE(apr_rmm_off_t) apr_rmm_calloc(apr_rmm_t *rmm, apr_size_t= reqsize); +00102=20 +00108 APU_DECLARE(apr_status_t) apr_rmm_free(apr_rmm_t *rmm, apr_rmm_off_t= entity); +00109=20 +00116 APU_DECLARE(void *) apr_rmm_addr_= get(apr_rmm_t *rmm, apr_rmm_off_t entity); +00117=20 +00123 APU_DECLARE(apr_rmm_off_t) apr_rmm_offset_get(apr_rmm_t *rmm, void* entity); +00124=20 +00129 APU_DECLARE(apr_size_t) apr_rmm_overhead_get(int n); +00130=20 +00131 #ifdef __cplusplus +00132 } +00133 #endif +00135 #endif /* ! APR_RMM_H */ +00136=20 +

Generat= ed on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by -3D"doxygen"= 1.3.8
+3D"doxygen"= 1.3.7
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__r= mm_8h.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 @@ -Apache Portable Runtime Utility Library: include/apr_rmm.h File Ref= erence +Apache Portable Runtime Utility Library: apr_rmm.h File Reference</= title> <link href=3D"doxygen.css" rel=3D"stylesheet" type=3D"text/css"> </head><body> -<!-- Generated by Doxygen 1.3.8 --> +<!-- Generated by Doxygen 1.3.7 --> <div class=3D"qindex"><a class=3D"qindex" href=3D"index.html">Main Pa= ge</a> | <a class=3D"qindex" href=3D"modules.html">Modules</a> | <a class= =3D"qindex" href=3D"namespaces.html">Namespace List</a> | <a class=3D"qinde= x" href=3D"annotated.html">Data Structures</a> | <a class=3D"qindex" h= ref=3D"files.html">File List</a> | <a class=3D"qindex" href=3D"functio= ns.html">Data Fields</a> | <a class=3D"qindex" href=3D"globals.html">G= lobals</a></div> -<h1>include/apr_rmm.h File Reference</h1>APR-UTIL Relocatable Memory Manag= ement Routines. <a href=3D"#_details">More...</a> +<h1>include/apr_rmm.h File Reference</h1>APR-UTIL Relocatable Memory Manag= ement Routines. =20 +<a href=3D"#_details">More...</a> <p> <code>#include "apr.h"</code><br> <code>#include "apr_pools.h"</code><br> @@ -48,8 +49,8 @@ <hr><a name=3D"_details"></a><h2>Detailed Description</h2> APR-UTIL Relocatable Memory Management Routines.=20 <p> -<hr size=3D"1"><address style=3D"align: right;"><small>Generated on Wed Se= p 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +<hr size=3D"1"><address style=3D"align: right;"><small>Generated on Mon Fe= b 7 13:19:18 2005 for Apache Portable Runtime Utility Library by <a href=3D"http://www.doxygen.org/index.html"> -<img src=3D"doxygen.png" alt=3D"doxygen" align=3D"middle" border=3D0 ></a>= 1.3.8 </small></address> +<img src=3D"doxygen.png" alt=3D"doxygen" align=3D"middle" border=3D0 ></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__s= dbm_8h-source.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 1= 5:10:17 2005 @@ -3,81 +3,82 @@ <title>Apache Portable Runtime Utility Library: include/apr_sdbm.h Source = File - + -

include/apr_sdbm.h

Go to the documen= tation of this file.
00001 /* Copyright 2000-2004 The Apache Software Foundation -00002 * -00003 * Licensed under the Apache License, Versio= n 2.0 (the "License"); -00004 * you may not use this file except in compl= iance with the License. -00005 * You may obtain a copy of the License at -00006 * -00007 * http://www.apache.org/licenses/LICENS= E-2.0 -00008 * -00009 * Unless required by applicable law or agre= ed to in writing, software -00010 * distributed under the License is distribu= ted on an "AS IS" BASIS, -00011 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. -00012 * See the License for the specific language= governing permissions and -00013 * limitations under the License. -00014 */ -00015=20 -00016 /* -00017 * sdbm - ndbm work-alike hashed database li= brary -00018 * based on Per-Ake Larson's Dynamic Hashing= algorithms. BIT 18 (1978). -00019 * author: oz@nexus.yorku.ca -00020 * status: ex-public domain -00021 */ -00022=20 -00023 #ifndef APR_SDBM_H -00024 #de= fine APR_SDBM_H -00025 -00026 #include "apu.h" -00027 #include "apr_errno.h" -00028 #include "apr_file_io.h" /* for apr_fileperms_t */ -00029=20 -00043 typedef struct apr_sdbm_t apr_sdbm_t; -00044=20 -00048 typedef struct { -00050 char *dptr; -00052 int dsize; -00053 } apr_sdbm= _datum_t; -00054=20 -00055 /* The extensions used for the database file= s */ -00057 #define APR= _SDBM_DIRFEXT ".dir" -00058 -00059 #define APR= _SDBM_PAGFEXT ".pag" -00060 -00061 /* flags to sdbm_store */ -00062 #define APR= _SDBM_INSERT 0 -00063 #define APR= _SDBM_REPLACE 1 -00064 #define APR= _SDBM_INSERTDUP 2 -00084 APU_DECLARE(apr_status_t) apr_sdbm_open= (apr_sdbm_t **db, const char *name, -00085 = apr_int32_t mode,=20 -00086 apr_fileperms_t perms, apr_p= ool_t *p); -00087=20 -00092 APU_DECLARE(apr_status_t) apr_sdbm_close(apr_sdbm_t *db); -00093=20 -00109 APU_DECLARE(apr_status_t) apr_sdbm_lock(apr_sdbm_t *db, int type); -00110=20 -00115 APU_DECLARE(apr_status_t) apr_sdbm_unlock(apr_sdbm_t *db); -00116=20 -00123 APU_DECLARE(apr_status_t) apr_sdbm_fetch(apr_sdbm_t *db,=20 -00124 apr_sdbm_datum_t *value,=20 -00125 apr_sdbm_datum_t key); -00126=20 -00138 APU_DECLARE(apr_status_t) apr_sdbm_store(apr_sdbm_t *db, apr_sdbm_datum_t key, -00139 apr_sdbm_datum_t value, int opt); -00140=20 -00147 APU_DECLARE(apr_status_t) apr_sdbm_delete(apr_sdbm_t *db,=20 -00148 const apr_sdbm_datum_t key); -00149=20 -00159 APU_DECLARE(apr_status_t) apr_sdbm_firstkey(apr_sdbm_t *db, apr_sdbm_datum_t *key= ); -00160=20 -00166 APU_DECLARE(apr_status_t) apr_sdbm_nextkey(apr_sdbm_t *db, apr_sdbm_datum_t *key= ); -00167=20 -00172 APU_DECLARE(int) apr_sdbm_rdonly(= apr_sdbm_t *db); -00174 #endif /* APR_SDBM_H */ -

Generat= ed on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +

include/apr_sdbm.h

Go to the documen= tation of this file.
00001 /* Copyright 2000-2005 The Apache Software Foundation or its licens= ors, as +00002 * applicable. +00003 * +00004 * Licensed under the Apache License, Versio= n 2.0 (the "License"); +00005 * you may not use this file except in compl= iance with the License. +00006 * You may obtain a copy of the License at +00007 * +00008 * http://www.apache.org/licenses/LICENS= E-2.0 +00009 * +00010 * Unless required by applicable law or agre= ed to in writing, software +00011 * distributed under the License is distribu= ted on an "AS IS" BASIS, +00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. +00013 * See the License for the specific language= governing permissions and +00014 * limitations under the License. +00015 */ +00016=20 +00017 /* +00018 * sdbm - ndbm work-alike hashed database li= brary +00019 * based on Per-Ake Larson's Dynamic Hashing= algorithms. BIT 18 (1978). +00020 * author: oz@nexus.yorku.ca +00021 * status: ex-public domain +00022 */ +00023=20 +00024 #ifndef APR_SDBM_H +00025 #de= fine APR_SDBM_H +00026 +00027 #include "apu.h" +00028 #include "apr_errno.h" +00029 #include "apr_file_io.h" /* for apr_fileperms_t */ +00030=20 +00044 typedef struct apr_sdbm_t apr_sdbm_t; +00045=20 +00049 typedef struct { +00051 char *dptr; +00053 int dsize; +00054 } apr_sdbm= _datum_t; +00055=20 +00056 /* The extensions used for the database file= s */ +00058 #define APR= _SDBM_DIRFEXT ".dir" +00059 +00060 #define APR= _SDBM_PAGFEXT ".pag" +00061 +00062 /* flags to sdbm_store */ +00063 #define APR= _SDBM_INSERT 0 +00064 #define APR= _SDBM_REPLACE 1 +00065 #define APR= _SDBM_INSERTDUP 2 +00085 APU_DECLARE(apr_status_t) apr_sdbm_open= (apr_sdbm_t **db, const char *name, +00086 = apr_int32_t mode,=20 +00087 apr_fileperms_t perms, apr_p= ool_t *p); +00088=20 +00093 APU_DECLARE(apr_status_t) apr_sdbm_close(apr_sdbm_t *db); +00094=20 +00110 APU_DECLARE(apr_status_t) apr_sdbm_lock(apr_sdbm_t *db, int type); +00111=20 +00116 APU_DECLARE(apr_status_t) apr_sdbm_unlock(apr_sdbm_t *db); +00117=20 +00124 APU_DECLARE(apr_status_t) apr_sdbm_fetch(apr_sdbm_t *db,=20 +00125 apr_sdbm_datum_t *value,=20 +00126 apr_sdbm_datum_t key); +00127=20 +00139 APU_DECLARE(apr_status_t) apr_sdbm_store(apr_sdbm_t *db, apr_sdbm_datum_t key, +00140 apr_sdbm_datum_t value, int opt); +00141=20 +00148 APU_DECLARE(apr_status_t) apr_sdbm_delete(apr_sdbm_t *db,=20 +00149 const apr_sdbm_datum_t key); +00150=20 +00160 APU_DECLARE(apr_status_t) apr_sdbm_firstkey(apr_sdbm_t *db, apr_sdbm_datum_t *key= ); +00161=20 +00167 APU_DECLARE(apr_status_t) apr_sdbm_nextkey(apr_sdbm_t *db, apr_sdbm_datum_t *key= ); +00168=20 +00173 APU_DECLARE(int) apr_sdbm_rdonly(= apr_sdbm_t *db); +00175 #endif /* APR_SDBM_H */ +

Generat= ed on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by -3D"doxygen"= 1.3.8
+3D"doxygen"= 1.3.7
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__s= dbm_8h.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 @@ -Apache Portable Runtime Utility Library: include/apr_sdbm.h File Re= ference +Apache Portable Runtime Utility Library: apr_sdbm.h File Reference<= /title> <link href=3D"doxygen.css" rel=3D"stylesheet" type=3D"text/css"> </head><body> -<!-- Generated by Doxygen 1.3.8 --> +<!-- Generated by Doxygen 1.3.7 --> <div class=3D"qindex"><a class=3D"qindex" href=3D"index.html">Main Pa= ge</a> | <a class=3D"qindex" href=3D"modules.html">Modules</a> | <a class= =3D"qindex" href=3D"namespaces.html">Namespace List</a> | <a class=3D"qinde= x" href=3D"annotated.html">Data Structures</a> | <a class=3D"qindex" h= ref=3D"files.html">File List</a> | <a class=3D"qindex" href=3D"functio= ns.html">Data Fields</a> | <a class=3D"qindex" href=3D"globals.html">G= lobals</a></div> -<h1>include/apr_sdbm.h File Reference</h1>apr-util SDBM library <a href=3D= "#_details">More...</a> +<h1>include/apr_sdbm.h File Reference</h1>apr-util SDBM library =20 +<a href=3D"#_details">More...</a> <p> <code>#include "apu.h"</code><br> <code>#include "apr_errno.h"</code><br> @@ -22,11 +23,11 @@ =20 <tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>#define&nb= sp;</td><td class=3D"memItemRight" valign=3Dbottom><a class=3D"el" href=3D"= group___a_p_r___util___d_b_m___s_d_b_m.html#ga12">APR_SDBM_PAGFEXT</a> = ;  ".pag"</td></tr> =20 -<tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>#define&nb= sp;</td><td class=3D"memItemRight" valign=3Dbottom><a class=3D"el" href=3D"= group___a_p_r___util___d_b_m___s_d_b_m.html#ga13">APR_SDBM_INSERT</a> =   0</td></tr> +<tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>#define&nb= sp;</td><td class=3D"memItemRight" valign=3Dbottom><a class=3D"el" href=3D"= group___a_p_r___util___d_b_m___s_d_b_m.html#ga13">APR_SDBM_INSERT</a> =   0 /**< Insert */</td></tr> =20 -<tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>#define&nb= sp;</td><td class=3D"memItemRight" valign=3Dbottom><a class=3D"el" href=3D"= group___a_p_r___util___d_b_m___s_d_b_m.html#ga14">APR_SDBM_REPLACE</a> = ;  1</td></tr> +<tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>#define&nb= sp;</td><td class=3D"memItemRight" valign=3Dbottom><a class=3D"el" href=3D"= group___a_p_r___util___d_b_m___s_d_b_m.html#ga14">APR_SDBM_REPLACE</a> = ;  1 /**< Replace */</td></tr> =20 -<tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>#define&nb= sp;</td><td class=3D"memItemRight" valign=3Dbottom><a class=3D"el" href=3D"= group___a_p_r___util___d_b_m___s_d_b_m.html#ga15">APR_SDBM_INSERTDUP</a>&nb= sp;  2</td></tr> +<tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>#define&nb= sp;</td><td class=3D"memItemRight" valign=3Dbottom><a class=3D"el" href=3D"= group___a_p_r___util___d_b_m___s_d_b_m.html#ga15">APR_SDBM_INSERTDUP</a>&nb= sp;  2 /**< Insert with duplicates */</td></tr> =20 <tr><td colspan=3D2><br><h2>Typedefs</h2></td></tr> <tr><td class=3D"memItemLeft" nowrap align=3Dright valign=3Dtop>typedef <a= class=3D"el" href=3D"group___a_p_r___util___d_b_m___s_d_b_m.html#ga0">apr_= sdbm_t</a> </td><td class=3D"memItemRight" valign=3Dbottom><a class=3D= "el" href=3D"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=3D"_details"></a><h2>Detailed Description</h2> apr-util SDBM library=20 <p> -<hr size=3D"1"><address style=3D"align: right;"><small>Generated on Wed Se= p 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +<hr size=3D"1"><address style=3D"align: right;"><small>Generated on Mon Fe= b 7 13:19:18 2005 for Apache Portable Runtime Utility Library by <a href=3D"http://www.doxygen.org/index.html"> -<img src=3D"doxygen.png" alt=3D"doxygen" align=3D"middle" border=3D0 ></a>= 1.3.8 </small></address> +<img src=3D"doxygen.png" alt=3D"doxygen" align=3D"middle" border=3D0 ></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__s= ha1_8h-source.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 1= 5:10:17 2005 @@ -3,75 +3,76 @@ <title>Apache Portable Runtime Utility Library: include/apr_sha1.h Source = File - + -

include/apr_sha1.h

Go to the documen= tation of this file.
00001 /* Copyright 2001-2004 The Apache Software Foundation -00002 * -00003 * Licensed under the Apache License, Versio= n 2.0 (the "License"); -00004 * you may not use this file except in compl= iance with the License. -00005 * You may obtain a copy of the License at -00006 * -00007 * http://www.apache.org/licenses/LICENS= E-2.0 -00008 * -00009 * Unless required by applicable law or agre= ed to in writing, software -00010 * distributed under the License is distribu= ted on an "AS IS" BASIS, -00011 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. -00012 * See the License for the specific language= governing permissions and -00013 * limitations under the License. -00014 */ -00015 /* NIST Secure Hash Algorithm -00016 * heavily modified by Uwe Hollerbach u= h@alumni.caltech edu -00017 * from Peter C. Gutmann's implementati= on as found in -00018 * Applied Cryptography by Bruce Schnei= er -00019 * This code is hereby placed in the pu= blic domain -00020 */ -00021=20 -00022 #ifndef APR_SHA1_H -00023 #de= fine APR_SHA1_H -00024 -00025 #include "apu.h" -00026 #include "apr_general.h" -00027=20 -00028 #ifdef __cplusplus -00029 extern "C" { -00030 #endif -00031 -000= 38 #define APR_SHA1_DIGESTSIZE 20 -00039 -000= 44 #define APR_SHA1PW_ID "{SHA}" -00045 -000= 47 #define APR_SHA1PW_IDLEN 5 -00048 -000= 50 typedef struc= t apr_sha1_c= tx_t apr_sha1_ctx_t; -00051=20 -00055 struct apr_sha1_ctx_t { -00057 apr_uint32_t digest[5]; -00059 apr_uint32_t count_lo, count_hi; -00061 apr_uint32_t data[16]; -00063 int local; -00064 }; -00065=20 -00081 APU_DECLARE(void) apr_sha1_base64= (const char *clear, int len, char *out); -00082=20 -00087 APU_DECLARE(void) apr_sha1_init(a= pr_sha1_ctx_t *context); -00088=20 -00095 APU_DECLARE(void) apr_sha1_update= (apr_sha1_ctx_t *context, const char *in= put, -00096 unsigned= int inputLen); -00097=20 -00104 APU_DECLARE(void) apr_sha1_update= _binary(apr_sha1_ctx_t *context, -00105 const unsigned char *input, -00106 u= nsigned int inputLen); -00107=20 -00113 APU_DECLARE(void) apr_sha1_final(= unsigned cha= r digest[APR_SHA1_DIGESTSIZE], -00114 apr_sha1_ctx_t *context); -00115=20 -00116 #ifdef __cplusplus -00117 } -00118 #endif -00119=20 -00120 #endif /* APR_SHA1_H */ -

Generat= ed on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +

include/apr_sha1.h

Go to the documen= tation of this file.
00001 /* Copyright 2001-2005 The Apache Software Foundation or its licens= ors, as +00002 * applicable. +00003 * +00004 * Licensed under the Apache License, Versio= n 2.0 (the "License"); +00005 * you may not use this file except in compl= iance with the License. +00006 * You may obtain a copy of the License at +00007 * +00008 * http://www.apache.org/licenses/LICENS= E-2.0 +00009 * +00010 * Unless required by applicable law or agre= ed to in writing, software +00011 * distributed under the License is distribu= ted on an "AS IS" BASIS, +00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. +00013 * See the License for the specific language= governing permissions and +00014 * limitations under the License. +00015 */ +00016 /* NIST Secure Hash Algorithm +00017 * heavily modified by Uwe Hollerbach u= h@alumni.caltech edu +00018 * from Peter C. Gutmann's implementati= on as found in +00019 * Applied Cryptography by Bruce Schnei= er +00020 * This code is hereby placed in the pu= blic domain +00021 */ +00022=20 +00023 #ifndef APR_SHA1_H +00024 #de= fine APR_SHA1_H +00025 +00026 #include "apu.h" +00027 #include "apr_general.h" +00028=20 +00029 #ifdef __cplusplus +00030 extern "C" { +00031 #endif +00032 +000= 39 #define APR_SHA1_DIGESTSIZE 20 +00040 +000= 45 #define APR_SHA1PW_ID "{SHA}" +00046 +000= 48 #define APR_SHA1PW_IDLEN 5 +00049 +000= 51 typedef struc= t apr_sha1_c= tx_t apr_sha1_ctx_t; +00052=20 +00056 struct apr_sha1_ctx_t { +00058 apr_uint32_t digest[5]; +00060 apr_uint32_t count_lo, count_hi; +00062 apr_uint32_t data[16]; +00064 int local; +00065 }; +00066=20 +00082 APU_DECLARE(void) apr_sha1_base64= (const char *clear, int len, char *out); +00083=20 +00088 APU_DECLARE(void) apr_sha1_init(a= pr_sha1_ctx_t *context); +00089=20 +00096 APU_DECLARE(void) apr_sha1_update= (apr_sha1_ctx_t *context, const char *in= put, +00097 unsigned= int inputLen); +00098=20 +00105 APU_DECLARE(void) apr_sha1_update= _binary(apr_sha1_ctx_t *context, +00106 const unsigned char *input, +00107 u= nsigned int inputLen); +00108=20 +00114 APU_DECLARE(void) apr_sha1_final(= unsigned cha= r digest[APR_SHA1_DIGESTSIZE], +00115 apr_sha1_ctx_t *context); +00116=20 +00117 #ifdef __cplusplus +00118 } +00119 #endif +00120=20 +00121 #endif /* APR_SHA1_H */ +

Generat= ed on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by -3D"doxygen"= 1.3.8
+3D"doxygen"= 1.3.7
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__s= ha1_8h.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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 @@ -Apache Portable Runtime Utility Library: include/apr_sha1.h File Re= ference +Apache Portable Runtime Utility Library: apr_sha1.h File Reference<= /title> <link href=3D"doxygen.css" rel=3D"stylesheet" type=3D"text/css"> </head><body> -<!-- Generated by Doxygen 1.3.8 --> +<!-- Generated by Doxygen 1.3.7 --> <div class=3D"qindex"><a class=3D"qindex" href=3D"index.html">Main Pa= ge</a> | <a class=3D"qindex" href=3D"modules.html">Modules</a> | <a class= =3D"qindex" href=3D"namespaces.html">Namespace List</a> | <a class=3D"qinde= x" href=3D"annotated.html">Data Structures</a> | <a class=3D"qindex" h= ref=3D"files.html">File List</a> | <a class=3D"qindex" href=3D"functio= ns.html">Data Fields</a> | <a class=3D"qindex" href=3D"globals.html">G= lobals</a></div> -<h1>include/apr_sha1.h File Reference</h1>APR-UTIL SHA1 library. <a href= =3D"#_details">More...</a> +<h1>include/apr_sha1.h File Reference</h1>APR-UTIL SHA1 library. =20 +<a href=3D"#_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=3D"1"><address style=3D"align: right;"><small>Generated on Wed Se= p 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +<hr size=3D"1"><address style=3D"align: right;"><small>Generated on Mon Fe= b 7 13:19:18 2005 for Apache Portable Runtime Utility Library by <a href=3D"http://www.doxygen.org/index.html"> -<img src=3D"doxygen.png" alt=3D"doxygen" align=3D"middle" border=3D0 ></a>= 1.3.8 </small></address> +<img src=3D"doxygen.png" alt=3D"doxygen" align=3D"middle" border=3D0 ></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__s= trmatch_8h-source.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- apr/site/trunk/docs/docs/apr-util/apr__strmatch_8h-source.html (origina= l) +++ 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 Sou= rce File - + -

include/apr_strmatch.h

Go to the= documentation of this file.
00001 /* Copyright 2002-2004 The Apache Software Foundation -00002 * -00003 * Licensed under the Apache License, Versio= n 2.0 (the "License"); -00004 * you may not use this file except in compl= iance with the License. -00005 * You may obtain a copy of the License at -00006 * -00007 * http://www.apache.org/licenses/LICENS= E-2.0 -00008 * -00009 * Unless required by applicable law or agre= ed to in writing, software -00010 * distributed under the License is distribu= ted on an "AS IS" BASIS, -00011 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. -00012 * See the License for the specific language= governing permissions and -00013 * limitations under the License. -00014 */ -00015=20 -00016 #ifndef APR_STRMATCH_H -00017 #de= fine APR_STRMATCH_H -00018 -00023 #include "apu.h" -00024 #include "apr_pools.h" -00025=20 -00026 #ifdef __cplusplus -00027 extern "C" { -00028 #endif -00029 -00037 typedef struct apr_strmatch_pattern apr_strmatch_pattern; -00038=20 -00042 struct apr_strmatch_pattern { -00044 const char *(*compare)(const apr_strmatch_patter= n *this_pattern, -00045 const char *s, apr_size_t slen); -00046 const char *pattern; =20 -00047 apr_size_t length; =20 -00048 void *context; = =20 -00049 }; -00050=20 -00051 #if defined(DOXYGEN) -00052 -00060 APU_DECLARE(const char *) apr_strmatch(const apr_strmatch_pattern *pattern, -00061 const char *s, apr_size_t slen); -00062 #else -00063 #define apr_strmatch(pattern, s, slen) (*((pattern)->compare))((p= attern), (s), (slen)) -00064 #endif -00065=20 -00073 APU_DECLARE(const apr_strmatch_pattern *) apr_strmatch_precompile(ap= r_pool_t *p, const char *s, int case_sensitive); -00074=20 -00076 #ifdef __cplusplus -00077 } -00078 #endif -00079=20 -00080 #endif /* !APR_STRMATCH_H */ -

Generat= ed on Wed Sep 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +

include/apr_strmatch.h

Go to the= documentation of this file.
00001 /* Copyright 2002-2005 The Apache Software Foundation or it= s licensors, as +00002 * applicable. +00003 * +00004 * Licensed under the Apache License, Versio= n 2.0 (the "License"); +00005 * you may not use this file except in compl= iance with the License. +00006 * You may obtain a copy of the License at +00007 * +00008 * http://www.apache.org/licenses/LICENS= E-2.0 +00009 * +00010 * Unless required by applicable law or agre= ed to in writing, software +00011 * distributed under the License is distribu= ted on an "AS IS" BASIS, +00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY K= IND, either express or implied. +00013 * See the License for the specific language= governing permissions and +00014 * limitations under the License. +00015 */ +00016=20 +00017 #ifndef APR_STRMATCH_H +00018 #de= fine APR_STRMATCH_H +00019 +00024 #include "apu.h" +00025 #include "apr_pools.h" +00026=20 +00027 #ifdef __cplusplus +00028 extern "C" { +00029 #endif +00030 +00038 typedef struct apr_strmatch_pattern apr_strmatch_pattern; +00039=20 +00043 struct apr_strmatch_pattern { +00045 const char *(*compare)(const apr_strmatch_patter= n *this_pattern, +00046 const char *s, apr_size_t slen); +00047 const char *pattern; =20 +00048 apr_size_t length; =20 +00049 void *context; = =20 +00050 }; +00051=20 +00052 #if defined(DOXYGEN) +00053 +00061 APU_DECLARE(const char *) apr_strmatch(const apr_strmatch_pattern *pattern, +00062 const char *s, apr_size_t slen); +00063 #else +00064 #define apr_strmatch(pattern, s, slen) (*((pattern)->compare))((p= attern), (s), (slen)) +00065 #endif +00066=20 +00074 APU_DECLARE(const apr_strmatch_pattern *) apr_strmatch_precompile(ap= r_pool_t *p, const char *s, int case_sensitive); +00075=20 +00077 #ifdef __cplusplus +00078 } +00079 #endif +00080=20 +00081 #endif /* !APR_STRMATCH_H */ +

Generat= ed on Mon Feb 7 13:19:18 2005 for Apache Portable Runtime Utility Library by -3D"doxygen"= 1.3.8
+3D"doxygen"= 1.3.7
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__s= trmatch_8h.html?view=3Ddiff&r1=3D151767&r2=3D151768 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- 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:1= 0:17 2005 @@ -1,11 +1,12 @@ -Apache Portable Runtime Utility Library: include/apr_strmatch.h Fil= e Reference +Apache Portable Runtime Utility Library: apr_strmatch.h File Refere= nce - + -

include/apr_strmatch.h File Reference

APR-UTIL string matching rou= tines. More... +

include/apr_strmatch.h File Reference

APR-UTIL string matching rou= tines. =20 +More...

#include "apu.h"
#include "apr_pools.h"
@@ -28,8 +29,8 @@


Detailed Description

APR-UTIL string matching routines.=20

-


Generated on Wed Se= p 1 21:35:50 2004 for Apache Portable Runtime Utility Library by +
Generated on Mon Fe= b 7 13:19:18 2005 for Apache Portable Runtime Utility Library by -3D"doxygen"= 1.3.8
+3D"doxygen"= 1.3.7