You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2009/02/20 07:08:31 UTC

svn commit: r746159 [13/23] - in /apr/site/trunk/docs/docs: apr-util/trunk/ apr/trunk/

Modified: apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html?rev=746159&r1=746158&r2=746159&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h-source.html Fri Feb 20 06:08:22 2009
@@ -4,7 +4,7 @@
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 <link href="tabs.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.5.6 -->
+<!-- Generated by Doxygen 1.5.7.1 -->
 <div class="navigation" id="top">
   <div class="tabs">
     <ul>
@@ -16,6 +16,12 @@
       <li><a href="examples.html"><span>Examples</span></a></li>
     </ul>
   </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
 <h1>apr_lib.h</h1><a href="apr__lib_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/* Licensed to the Apache Software Foundation (ASF) under one or more</span>
 <a name="l00002"></a>00002 <span class="comment"> * contributor license agreements.  See the NOTICE file distributed with</span>
 <a name="l00003"></a>00003 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@@ -143,122 +149,123 @@
 <a name="l00125"></a>00125 <span class="comment"> * %%pF same as above, but takes a apr_off_t *</span>
 <a name="l00126"></a>00126 <span class="comment"> * %%pS same as above, but takes a apr_size_t *</span>
 <a name="l00127"></a>00127 <span class="comment"> *</span>
-<a name="l00128"></a>00128 <span class="comment"> * %%pt is only available from APR 1.2.0 onwards.</span>
-<a name="l00129"></a>00129 <span class="comment"> * %%pm, %%pB, %%pF and %%pS are only available from APR 1.3.0 onwards.</span>
-<a name="l00130"></a>00130 <span class="comment"> * </span>
-<a name="l00131"></a>00131 <span class="comment"> * The %%p hacks are to force gcc's printf warning code to skip</span>
-<a name="l00132"></a>00132 <span class="comment"> * over a pointer argument without complaining.  This does</span>
-<a name="l00133"></a>00133 <span class="comment"> * mean that the ANSI-style %%p (output a void * in hex format) won't</span>
-<a name="l00134"></a>00134 <span class="comment"> * work as expected at all, but that seems to be a fair trade-off</span>
-<a name="l00135"></a>00135 <span class="comment"> * for the increased robustness of having printf-warnings work.</span>
-<a name="l00136"></a>00136 <span class="comment"> *</span>
-<a name="l00137"></a>00137 <span class="comment"> * Additionally, apr_vformatter allows for arbitrary output methods</span>
-<a name="l00138"></a>00138 <span class="comment"> * using the apr_vformatter_buff and flush_func.</span>
-<a name="l00139"></a>00139 <span class="comment"> *</span>
-<a name="l00140"></a>00140 <span class="comment"> * The apr_vformatter_buff has two elements curpos and endpos.</span>
-<a name="l00141"></a>00141 <span class="comment"> * curpos is where apr_vformatter will write the next byte of output.</span>
-<a name="l00142"></a>00142 <span class="comment"> * It proceeds writing output to curpos, and updating curpos, until</span>
-<a name="l00143"></a>00143 <span class="comment"> * either the end of output is reached, or curpos == endpos (i.e. the</span>
-<a name="l00144"></a>00144 <span class="comment"> * buffer is full).</span>
-<a name="l00145"></a>00145 <span class="comment"> *</span>
-<a name="l00146"></a>00146 <span class="comment"> * If the end of output is reached, apr_vformatter returns the</span>
-<a name="l00147"></a>00147 <span class="comment"> * number of bytes written.</span>
-<a name="l00148"></a>00148 <span class="comment"> *</span>
-<a name="l00149"></a>00149 <span class="comment"> * When the buffer is full, the flush_func is called.  The flush_func</span>
-<a name="l00150"></a>00150 <span class="comment"> * can return -1 to indicate that no further output should be attempted,</span>
-<a name="l00151"></a>00151 <span class="comment"> * and apr_vformatter will return immediately with -1.  Otherwise</span>
-<a name="l00152"></a>00152 <span class="comment"> * the flush_func should flush the buffer in whatever manner is</span>
-<a name="l00153"></a>00153 <span class="comment"> * appropriate, re apr_pool_t nitialize curpos and endpos, and return 0.</span>
-<a name="l00154"></a>00154 <span class="comment"> *</span>
-<a name="l00155"></a>00155 <span class="comment"> * Note that flush_func is only invoked as a result of attempting to</span>
-<a name="l00156"></a>00156 <span class="comment"> * write another byte at curpos when curpos &gt;= endpos.  So for</span>
-<a name="l00157"></a>00157 <span class="comment"> * example, it's possible when the output exactly matches the buffer</span>
-<a name="l00158"></a>00158 <span class="comment"> * space available that curpos == endpos will be true when</span>
-<a name="l00159"></a>00159 <span class="comment"> * apr_vformatter returns.</span>
-<a name="l00160"></a>00160 <span class="comment"> *</span>
-<a name="l00161"></a>00161 <span class="comment"> * apr_vformatter does not call out to any other code, it is entirely</span>
-<a name="l00162"></a>00162 <span class="comment"> * self-contained.  This allows the callers to do things which are</span>
-<a name="l00163"></a>00163 <span class="comment"> * otherwise "unsafe".  For example, apr_psprintf uses the "scratch"</span>
-<a name="l00164"></a>00164 <span class="comment"> * space at the unallocated end of a block, and doesn't actually</span>
-<a name="l00165"></a>00165 <span class="comment"> * complete the allocation until apr_vformatter returns.  apr_psprintf</span>
-<a name="l00166"></a>00166 <span class="comment"> * would be completely broken if apr_vformatter were to call anything</span>
-<a name="l00167"></a>00167 <span class="comment"> * that used this same pool.  Similarly http_bprintf() uses the "scratch"</span>
-<a name="l00168"></a>00168 <span class="comment"> * space at the end of its output buffer, and doesn't actually note</span>
-<a name="l00169"></a>00169 <span class="comment"> * that the space is in use until it either has to flush the buffer</span>
-<a name="l00170"></a>00170 <span class="comment"> * or until apr_vformatter returns.</span>
-<a name="l00171"></a>00171 <span class="comment"> * &lt;/PRE&gt;</span>
-<a name="l00172"></a>00172 <span class="comment"> */</span>
-<a name="l00173"></a>00173 <a class="code" href="group__apr__platform.html#gd7b91b811a172bfa802603c2fb688f98">APR_DECLARE</a>(<span class="keywordtype">int</span>) <a class="code" href="group__apr__lib.html#gd2cd3594aeaafd45931d1034965f48c1">apr_vformatter</a>(<span class="keywordtype">int</span> (*flush_func)(<a class="code" href="structapr__vformatter__buff__t.html">apr_vformatter_buff_t</a> *b),
-<a name="l00174"></a>00174                                 <a class="code" href="structapr__vformatter__buff__t.html">apr_vformatter_buff_t</a> *c, const <span class="keywordtype">char</span> *fmt,
-<a name="l00175"></a>00175                                 va_list ap);
-<a name="l00176"></a>00176 <span class="comment"></span>
-<a name="l00177"></a>00177 <span class="comment">/**</span>
-<a name="l00178"></a>00178 <span class="comment"> * Display a prompt and read in the password from stdin.</span>
-<a name="l00179"></a>00179 <span class="comment"> * @param prompt The prompt to display</span>
-<a name="l00180"></a>00180 <span class="comment"> * @param pwbuf Buffer to store the password</span>
-<a name="l00181"></a>00181 <span class="comment"> * @param bufsize The length of the password buffer.</span>
-<a name="l00182"></a>00182 <span class="comment"> * @remark If the password entered must be truncated to fit in</span>
-<a name="l00183"></a>00183 <span class="comment"> * the provided buffer, APR_ENAMETOOLONG will be returned.</span>
-<a name="l00184"></a>00184 <span class="comment"> * Note that the bufsize paramater is passed by reference for no</span>
-<a name="l00185"></a>00185 <span class="comment"> * reason; its value will never be modified by the apr_password_get()</span>
-<a name="l00186"></a>00186 <span class="comment"> * function.</span>
-<a name="l00187"></a>00187 <span class="comment"> */</span>
-<a name="l00188"></a>00188 <a class="code" href="group__apr__platform.html#gd7b91b811a172bfa802603c2fb688f98">APR_DECLARE</a>(<a class="code" href="group__apr__errno.html#gf76ee4543247e9fb3f3546203e590a6c">apr_status_t</a>) <a class="code" href="group__apr__lib.html#g377e0677598745769ec6f80fecf8f859">apr_password_get</a>(const <span class="keywordtype">char</span> *prompt, <span class="keywordtype">char</span> *pwbuf, 
-<a name="l00189"></a>00189                                            apr_size_t *bufsize);
-<a name="l00190"></a>00190 <span class="comment"></span>
-<a name="l00191"></a>00191 <span class="comment">/** @} */</span>
-<a name="l00192"></a>00192 <span class="comment"></span>
-<a name="l00193"></a>00193 <span class="comment">/**</span>
-<a name="l00194"></a>00194 <span class="comment"> * @defgroup apr_ctype ctype functions</span>
-<a name="l00195"></a>00195 <span class="comment"> * These macros allow correct support of 8-bit characters on systems which</span>
-<a name="l00196"></a>00196 <span class="comment"> * support 8-bit characters.  Pretty dumb how the cast is required, but</span>
-<a name="l00197"></a>00197 <span class="comment"> * that's legacy libc for ya.  These new macros do not support EOF like</span>
-<a name="l00198"></a>00198 <span class="comment"> * the standard macros do.  Tough.</span>
-<a name="l00199"></a>00199 <span class="comment"> * @{</span>
-<a name="l00200"></a>00200 <span class="comment"> */</span><span class="comment"></span>
-<a name="l00201"></a>00201 <span class="comment">/** @see isalnum */</span>
-<a name="l00202"></a><a class="code" href="group__apr__ctype.html#g4fa78e6e7272dae64731768a17a2e003">00202</a> <span class="preprocessor">#define apr_isalnum(c) (isalnum(((unsigned char)(c))))</span>
-<a name="l00203"></a>00203 <span class="preprocessor"></span><span class="comment">/** @see isalpha */</span>
-<a name="l00204"></a><a class="code" href="group__apr__ctype.html#g9ecd5b94a7816591afd68040b0624327">00204</a> <span class="preprocessor">#define apr_isalpha(c) (isalpha(((unsigned char)(c))))</span>
-<a name="l00205"></a>00205 <span class="preprocessor"></span><span class="comment">/** @see iscntrl */</span>
-<a name="l00206"></a><a class="code" href="group__apr__ctype.html#gcc8b4597be99c895ea042e8088ee94ab">00206</a> <span class="preprocessor">#define apr_iscntrl(c) (iscntrl(((unsigned char)(c))))</span>
-<a name="l00207"></a>00207 <span class="preprocessor"></span><span class="comment">/** @see isdigit */</span>
-<a name="l00208"></a><a class="code" href="group__apr__ctype.html#g8c453b1d66015b357c3d3a3ddb7d97d7">00208</a> <span class="preprocessor">#define apr_isdigit(c) (isdigit(((unsigned char)(c))))</span>
-<a name="l00209"></a>00209 <span class="preprocessor"></span><span class="comment">/** @see isgraph */</span>
-<a name="l00210"></a><a class="code" href="group__apr__ctype.html#gd4fbfcf508e7771ca85e85e4ac9567c2">00210</a> <span class="preprocessor">#define apr_isgraph(c) (isgraph(((unsigned char)(c))))</span>
-<a name="l00211"></a>00211 <span class="preprocessor"></span><span class="comment">/** @see islower*/</span>
-<a name="l00212"></a><a class="code" href="group__apr__ctype.html#gff5eeb2f6350095ce86cc2cd4b1d38ee">00212</a> <span class="preprocessor">#define apr_islower(c) (islower(((unsigned char)(c))))</span>
-<a name="l00213"></a>00213 <span class="preprocessor"></span><span class="comment">/** @see isascii */</span>
-<a name="l00214"></a>00214 <span class="preprocessor">#ifdef isascii</span>
-<a name="l00215"></a>00215 <span class="preprocessor"></span><span class="preprocessor">#define apr_isascii(c) (isascii(((unsigned char)(c))))</span>
-<a name="l00216"></a>00216 <span class="preprocessor"></span><span class="preprocessor">#else</span>
-<a name="l00217"></a><a class="code" href="group__apr__ctype.html#ge7cab1b39d2e0fc14f343ec14e12565a">00217</a> <span class="preprocessor"></span><span class="preprocessor">#define apr_isascii(c) (((c) &amp; ~0x7f)==0)</span>
-<a name="l00218"></a>00218 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
-<a name="l00219"></a>00219 <span class="preprocessor"></span><span class="comment">/** @see isprint */</span>
-<a name="l00220"></a><a class="code" href="group__apr__ctype.html#g20da56fc8bbedc9f8a40d20c1cc58bac">00220</a> <span class="preprocessor">#define apr_isprint(c) (isprint(((unsigned char)(c))))</span>
-<a name="l00221"></a>00221 <span class="preprocessor"></span><span class="comment">/** @see ispunct */</span>
-<a name="l00222"></a><a class="code" href="group__apr__ctype.html#g1db14e8d5f9891010c8bad08aa100674">00222</a> <span class="preprocessor">#define apr_ispunct(c) (ispunct(((unsigned char)(c))))</span>
-<a name="l00223"></a>00223 <span class="preprocessor"></span><span class="comment">/** @see isspace */</span>
-<a name="l00224"></a><a class="code" href="group__apr__ctype.html#g23f4c7721923a0f0f444fd7fb196047a">00224</a> <span class="preprocessor">#define apr_isspace(c) (isspace(((unsigned char)(c))))</span>
-<a name="l00225"></a>00225 <span class="preprocessor"></span><span class="comment">/** @see isupper */</span>
-<a name="l00226"></a><a class="code" href="group__apr__ctype.html#g362f53cc44aab662aaf04fa87e36035b">00226</a> <span class="preprocessor">#define apr_isupper(c) (isupper(((unsigned char)(c))))</span>
-<a name="l00227"></a>00227 <span class="preprocessor"></span><span class="comment">/** @see isxdigit */</span>
-<a name="l00228"></a><a class="code" href="group__apr__ctype.html#g9d30f3c5d538c21c6d50565cda8654d0">00228</a> <span class="preprocessor">#define apr_isxdigit(c) (isxdigit(((unsigned char)(c))))</span>
-<a name="l00229"></a>00229 <span class="preprocessor"></span><span class="comment">/** @see tolower */</span>
-<a name="l00230"></a><a class="code" href="group__apr__ctype.html#ga591f2a7eb578b1fb3ae9aeaab9eafaa">00230</a> <span class="preprocessor">#define apr_tolower(c) (tolower(((unsigned char)(c))))</span>
-<a name="l00231"></a>00231 <span class="preprocessor"></span><span class="comment">/** @see toupper */</span>
-<a name="l00232"></a><a class="code" href="group__apr__ctype.html#g83d2a3217282784d24897658ad0717b7">00232</a> <span class="preprocessor">#define apr_toupper(c) (toupper(((unsigned char)(c))))</span>
-<a name="l00233"></a>00233 <span class="preprocessor"></span><span class="comment"></span>
-<a name="l00234"></a>00234 <span class="comment">/** @} */</span>
-<a name="l00235"></a>00235 
-<a name="l00236"></a>00236 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00237"></a>00237 <span class="preprocessor"></span>}
-<a name="l00238"></a>00238 <span class="preprocessor">#endif</span>
-<a name="l00239"></a>00239 <span class="preprocessor"></span>
-<a name="l00240"></a>00240 <span class="preprocessor">#endif  </span><span class="comment">/* ! APR_LIB_H */</span>
+<a name="l00128"></a>00128 <span class="comment"> * %%pA, %%pI, %%pT, %%pp are available from APR 1.0.0 onwards (and in 0.9.x).</span>
+<a name="l00129"></a>00129 <span class="comment"> * %%pt is only available from APR 1.2.0 onwards.</span>
+<a name="l00130"></a>00130 <span class="comment"> * %%pm, %%pB, %%pF and %%pS are only available from APR 1.3.0 onwards.</span>
+<a name="l00131"></a>00131 <span class="comment"> *</span>
+<a name="l00132"></a>00132 <span class="comment"> * The %%p hacks are to force gcc's printf warning code to skip</span>
+<a name="l00133"></a>00133 <span class="comment"> * over a pointer argument without complaining.  This does</span>
+<a name="l00134"></a>00134 <span class="comment"> * mean that the ANSI-style %%p (output a void * in hex format) won't</span>
+<a name="l00135"></a>00135 <span class="comment"> * work as expected at all, but that seems to be a fair trade-off</span>
+<a name="l00136"></a>00136 <span class="comment"> * for the increased robustness of having printf-warnings work.</span>
+<a name="l00137"></a>00137 <span class="comment"> *</span>
+<a name="l00138"></a>00138 <span class="comment"> * Additionally, apr_vformatter allows for arbitrary output methods</span>
+<a name="l00139"></a>00139 <span class="comment"> * using the apr_vformatter_buff and flush_func.</span>
+<a name="l00140"></a>00140 <span class="comment"> *</span>
+<a name="l00141"></a>00141 <span class="comment"> * The apr_vformatter_buff has two elements curpos and endpos.</span>
+<a name="l00142"></a>00142 <span class="comment"> * curpos is where apr_vformatter will write the next byte of output.</span>
+<a name="l00143"></a>00143 <span class="comment"> * It proceeds writing output to curpos, and updating curpos, until</span>
+<a name="l00144"></a>00144 <span class="comment"> * either the end of output is reached, or curpos == endpos (i.e. the</span>
+<a name="l00145"></a>00145 <span class="comment"> * buffer is full).</span>
+<a name="l00146"></a>00146 <span class="comment"> *</span>
+<a name="l00147"></a>00147 <span class="comment"> * If the end of output is reached, apr_vformatter returns the</span>
+<a name="l00148"></a>00148 <span class="comment"> * number of bytes written.</span>
+<a name="l00149"></a>00149 <span class="comment"> *</span>
+<a name="l00150"></a>00150 <span class="comment"> * When the buffer is full, the flush_func is called.  The flush_func</span>
+<a name="l00151"></a>00151 <span class="comment"> * can return -1 to indicate that no further output should be attempted,</span>
+<a name="l00152"></a>00152 <span class="comment"> * and apr_vformatter will return immediately with -1.  Otherwise</span>
+<a name="l00153"></a>00153 <span class="comment"> * the flush_func should flush the buffer in whatever manner is</span>
+<a name="l00154"></a>00154 <span class="comment"> * appropriate, re apr_pool_t nitialize curpos and endpos, and return 0.</span>
+<a name="l00155"></a>00155 <span class="comment"> *</span>
+<a name="l00156"></a>00156 <span class="comment"> * Note that flush_func is only invoked as a result of attempting to</span>
+<a name="l00157"></a>00157 <span class="comment"> * write another byte at curpos when curpos &gt;= endpos.  So for</span>
+<a name="l00158"></a>00158 <span class="comment"> * example, it's possible when the output exactly matches the buffer</span>
+<a name="l00159"></a>00159 <span class="comment"> * space available that curpos == endpos will be true when</span>
+<a name="l00160"></a>00160 <span class="comment"> * apr_vformatter returns.</span>
+<a name="l00161"></a>00161 <span class="comment"> *</span>
+<a name="l00162"></a>00162 <span class="comment"> * apr_vformatter does not call out to any other code, it is entirely</span>
+<a name="l00163"></a>00163 <span class="comment"> * self-contained.  This allows the callers to do things which are</span>
+<a name="l00164"></a>00164 <span class="comment"> * otherwise "unsafe".  For example, apr_psprintf uses the "scratch"</span>
+<a name="l00165"></a>00165 <span class="comment"> * space at the unallocated end of a block, and doesn't actually</span>
+<a name="l00166"></a>00166 <span class="comment"> * complete the allocation until apr_vformatter returns.  apr_psprintf</span>
+<a name="l00167"></a>00167 <span class="comment"> * would be completely broken if apr_vformatter were to call anything</span>
+<a name="l00168"></a>00168 <span class="comment"> * that used this same pool.  Similarly http_bprintf() uses the "scratch"</span>
+<a name="l00169"></a>00169 <span class="comment"> * space at the end of its output buffer, and doesn't actually note</span>
+<a name="l00170"></a>00170 <span class="comment"> * that the space is in use until it either has to flush the buffer</span>
+<a name="l00171"></a>00171 <span class="comment"> * or until apr_vformatter returns.</span>
+<a name="l00172"></a>00172 <span class="comment"> * &lt;/PRE&gt;</span>
+<a name="l00173"></a>00173 <span class="comment"> */</span>
+<a name="l00174"></a>00174 <a class="code" href="group__apr__platform.html#gd7b91b811a172bfa802603c2fb688f98">APR_DECLARE</a>(<span class="keywordtype">int</span>) <a class="code" href="group__apr__lib.html#gd2cd3594aeaafd45931d1034965f48c1">apr_vformatter</a>(<span class="keywordtype">int</span> (*flush_func)(<a class="code" href="structapr__vformatter__buff__t.html">apr_vformatter_buff_t</a> *b),
+<a name="l00175"></a>00175                                 <a class="code" href="structapr__vformatter__buff__t.html">apr_vformatter_buff_t</a> *c, const <span class="keywordtype">char</span> *fmt,
+<a name="l00176"></a>00176                                 va_list ap);
+<a name="l00177"></a>00177 <span class="comment"></span>
+<a name="l00178"></a>00178 <span class="comment">/**</span>
+<a name="l00179"></a>00179 <span class="comment"> * Display a prompt and read in the password from stdin.</span>
+<a name="l00180"></a>00180 <span class="comment"> * @param prompt The prompt to display</span>
+<a name="l00181"></a>00181 <span class="comment"> * @param pwbuf Buffer to store the password</span>
+<a name="l00182"></a>00182 <span class="comment"> * @param bufsize The length of the password buffer.</span>
+<a name="l00183"></a>00183 <span class="comment"> * @remark If the password entered must be truncated to fit in</span>
+<a name="l00184"></a>00184 <span class="comment"> * the provided buffer, APR_ENAMETOOLONG will be returned.</span>
+<a name="l00185"></a>00185 <span class="comment"> * Note that the bufsize paramater is passed by reference for no</span>
+<a name="l00186"></a>00186 <span class="comment"> * reason; its value will never be modified by the apr_password_get()</span>
+<a name="l00187"></a>00187 <span class="comment"> * function.</span>
+<a name="l00188"></a>00188 <span class="comment"> */</span>
+<a name="l00189"></a>00189 <a class="code" href="group__apr__platform.html#gd7b91b811a172bfa802603c2fb688f98">APR_DECLARE</a>(<a class="code" href="group__apr__errno.html#gf76ee4543247e9fb3f3546203e590a6c">apr_status_t</a>) <a class="code" href="group__apr__lib.html#g377e0677598745769ec6f80fecf8f859">apr_password_get</a>(const <span class="keywordtype">char</span> *prompt, <span class="keywordtype">char</span> *pwbuf, 
+<a name="l00190"></a>00190                                            apr_size_t *bufsize);
+<a name="l00191"></a>00191 <span class="comment"></span>
+<a name="l00192"></a>00192 <span class="comment">/** @} */</span>
+<a name="l00193"></a>00193 <span class="comment"></span>
+<a name="l00194"></a>00194 <span class="comment">/**</span>
+<a name="l00195"></a>00195 <span class="comment"> * @defgroup apr_ctype ctype functions</span>
+<a name="l00196"></a>00196 <span class="comment"> * These macros allow correct support of 8-bit characters on systems which</span>
+<a name="l00197"></a>00197 <span class="comment"> * support 8-bit characters.  Pretty dumb how the cast is required, but</span>
+<a name="l00198"></a>00198 <span class="comment"> * that's legacy libc for ya.  These new macros do not support EOF like</span>
+<a name="l00199"></a>00199 <span class="comment"> * the standard macros do.  Tough.</span>
+<a name="l00200"></a>00200 <span class="comment"> * @{</span>
+<a name="l00201"></a>00201 <span class="comment"> */</span><span class="comment"></span>
+<a name="l00202"></a>00202 <span class="comment">/** @see isalnum */</span>
+<a name="l00203"></a><a class="code" href="group__apr__ctype.html#g4fa78e6e7272dae64731768a17a2e003">00203</a> <span class="preprocessor">#define apr_isalnum(c) (isalnum(((unsigned char)(c))))</span>
+<a name="l00204"></a>00204 <span class="preprocessor"></span><span class="comment">/** @see isalpha */</span>
+<a name="l00205"></a><a class="code" href="group__apr__ctype.html#g9ecd5b94a7816591afd68040b0624327">00205</a> <span class="preprocessor">#define apr_isalpha(c) (isalpha(((unsigned char)(c))))</span>
+<a name="l00206"></a>00206 <span class="preprocessor"></span><span class="comment">/** @see iscntrl */</span>
+<a name="l00207"></a><a class="code" href="group__apr__ctype.html#gcc8b4597be99c895ea042e8088ee94ab">00207</a> <span class="preprocessor">#define apr_iscntrl(c) (iscntrl(((unsigned char)(c))))</span>
+<a name="l00208"></a>00208 <span class="preprocessor"></span><span class="comment">/** @see isdigit */</span>
+<a name="l00209"></a><a class="code" href="group__apr__ctype.html#g8c453b1d66015b357c3d3a3ddb7d97d7">00209</a> <span class="preprocessor">#define apr_isdigit(c) (isdigit(((unsigned char)(c))))</span>
+<a name="l00210"></a>00210 <span class="preprocessor"></span><span class="comment">/** @see isgraph */</span>
+<a name="l00211"></a><a class="code" href="group__apr__ctype.html#gd4fbfcf508e7771ca85e85e4ac9567c2">00211</a> <span class="preprocessor">#define apr_isgraph(c) (isgraph(((unsigned char)(c))))</span>
+<a name="l00212"></a>00212 <span class="preprocessor"></span><span class="comment">/** @see islower*/</span>
+<a name="l00213"></a><a class="code" href="group__apr__ctype.html#gff5eeb2f6350095ce86cc2cd4b1d38ee">00213</a> <span class="preprocessor">#define apr_islower(c) (islower(((unsigned char)(c))))</span>
+<a name="l00214"></a>00214 <span class="preprocessor"></span><span class="comment">/** @see isascii */</span>
+<a name="l00215"></a>00215 <span class="preprocessor">#ifdef isascii</span>
+<a name="l00216"></a>00216 <span class="preprocessor"></span><span class="preprocessor">#define apr_isascii(c) (isascii(((unsigned char)(c))))</span>
+<a name="l00217"></a>00217 <span class="preprocessor"></span><span class="preprocessor">#else</span>
+<a name="l00218"></a><a class="code" href="group__apr__ctype.html#ge7cab1b39d2e0fc14f343ec14e12565a">00218</a> <span class="preprocessor"></span><span class="preprocessor">#define apr_isascii(c) (((c) &amp; ~0x7f)==0)</span>
+<a name="l00219"></a>00219 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
+<a name="l00220"></a>00220 <span class="preprocessor"></span><span class="comment">/** @see isprint */</span>
+<a name="l00221"></a><a class="code" href="group__apr__ctype.html#g20da56fc8bbedc9f8a40d20c1cc58bac">00221</a> <span class="preprocessor">#define apr_isprint(c) (isprint(((unsigned char)(c))))</span>
+<a name="l00222"></a>00222 <span class="preprocessor"></span><span class="comment">/** @see ispunct */</span>
+<a name="l00223"></a><a class="code" href="group__apr__ctype.html#g1db14e8d5f9891010c8bad08aa100674">00223</a> <span class="preprocessor">#define apr_ispunct(c) (ispunct(((unsigned char)(c))))</span>
+<a name="l00224"></a>00224 <span class="preprocessor"></span><span class="comment">/** @see isspace */</span>
+<a name="l00225"></a><a class="code" href="group__apr__ctype.html#g23f4c7721923a0f0f444fd7fb196047a">00225</a> <span class="preprocessor">#define apr_isspace(c) (isspace(((unsigned char)(c))))</span>
+<a name="l00226"></a>00226 <span class="preprocessor"></span><span class="comment">/** @see isupper */</span>
+<a name="l00227"></a><a class="code" href="group__apr__ctype.html#g362f53cc44aab662aaf04fa87e36035b">00227</a> <span class="preprocessor">#define apr_isupper(c) (isupper(((unsigned char)(c))))</span>
+<a name="l00228"></a>00228 <span class="preprocessor"></span><span class="comment">/** @see isxdigit */</span>
+<a name="l00229"></a><a class="code" href="group__apr__ctype.html#g9d30f3c5d538c21c6d50565cda8654d0">00229</a> <span class="preprocessor">#define apr_isxdigit(c) (isxdigit(((unsigned char)(c))))</span>
+<a name="l00230"></a>00230 <span class="preprocessor"></span><span class="comment">/** @see tolower */</span>
+<a name="l00231"></a><a class="code" href="group__apr__ctype.html#ga591f2a7eb578b1fb3ae9aeaab9eafaa">00231</a> <span class="preprocessor">#define apr_tolower(c) (tolower(((unsigned char)(c))))</span>
+<a name="l00232"></a>00232 <span class="preprocessor"></span><span class="comment">/** @see toupper */</span>
+<a name="l00233"></a><a class="code" href="group__apr__ctype.html#g83d2a3217282784d24897658ad0717b7">00233</a> <span class="preprocessor">#define apr_toupper(c) (toupper(((unsigned char)(c))))</span>
+<a name="l00234"></a>00234 <span class="preprocessor"></span><span class="comment"></span>
+<a name="l00235"></a>00235 <span class="comment">/** @} */</span>
+<a name="l00236"></a>00236 
+<a name="l00237"></a>00237 <span class="preprocessor">#ifdef __cplusplus</span>
+<a name="l00238"></a>00238 <span class="preprocessor"></span>}
+<a name="l00239"></a>00239 <span class="preprocessor">#endif</span>
+<a name="l00240"></a>00240 <span class="preprocessor"></span>
+<a name="l00241"></a>00241 <span class="preprocessor">#endif  </span><span class="comment">/* ! APR_LIB_H */</span>
 </pre></div></div>
-<hr size="1"><address style="text-align: right;"><small>Generated on Sat Aug 16 21:30:11 2008 for Apache Portable Runtime by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Fri Feb 20 16:49:31 2009 for Apache Portable Runtime by&nbsp;
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.7.1 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html?rev=746159&r1=746158&r2=746159&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html (original)
+++ apr/site/trunk/docs/docs/apr/trunk/apr__lib_8h.html Fri Feb 20 06:08:22 2009
@@ -4,7 +4,7 @@
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 <link href="tabs.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.5.6 -->
+<!-- Generated by Doxygen 1.5.7.1 -->
 <div class="navigation" id="top">
   <div class="tabs">
     <ul>
@@ -16,9 +16,16 @@
       <li><a href="examples.html"><span>Examples</span></a></li>
     </ul>
   </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
 </div>
 <div class="contents">
-<h1>apr_lib.h File Reference</h1>APR general purpose library routines. <a href="#_details">More...</a>
+<h1>apr_lib.h File Reference</h1>APR general purpose library routines.  
+<a href="#_details">More...</a>
 <p>
 <code>#include &quot;<a class="el" href="apr_8h-source.html">apr.h</a>&quot;</code><br>
 <code>#include &quot;<a class="el" href="apr__errno_8h-source.html">apr_errno.h</a>&quot;</code><br>
@@ -65,7 +72,7 @@
 <tr><td class="memItemLeft" nowrap align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__apr__ctype.html#g83d2a3217282784d24897658ad0717b7">apr_toupper</a>(c)&nbsp;&nbsp;&nbsp;(toupper(((unsigned char)(c))))</td></tr>
 
 <tr><td colspan="2"><br><h2>Typedefs</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef struct <br>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef struct <br class="typebreak">
 <a class="el" href="structapr__vformatter__buff__t.html">apr_vformatter_buff_t</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__apr__lib.html#g5e9986deebda40f2d1cf8364fa03c3c5">apr_vformatter_buff_t</a></td></tr>
 
 <tr><td colspan="2"><br><h2>Functions</h2></td></tr>
@@ -80,8 +87,8 @@
 APR general purpose library routines. 
 <p>
 This is collection of oddballs that didn't fit anywhere else, and might move to more appropriate headers with the release of APR 1.0. </div>
-<hr size="1"><address style="text-align: right;"><small>Generated on Sat Aug 16 21:30:11 2008 for Apache Portable Runtime by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Fri Feb 20 16:49:31 2009 for Apache Portable Runtime by&nbsp;
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.7.1 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h-source.html?rev=746159&r1=746158&r2=746159&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h-source.html Fri Feb 20 06:08:22 2009
@@ -4,7 +4,7 @@
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 <link href="tabs.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.5.6 -->
+<!-- Generated by Doxygen 1.5.7.1 -->
 <div class="navigation" id="top">
   <div class="tabs">
     <ul>
@@ -16,6 +16,12 @@
       <li><a href="examples.html"><span>Examples</span></a></li>
     </ul>
   </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
 <h1>apr_mmap.h</h1><a href="apr__mmap_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/* Licensed to the Apache Software Foundation (ASF) under one or more</span>
 <a name="l00002"></a>00002 <span class="comment"> * contributor license agreements.  See the NOTICE file distributed with</span>
 <a name="l00003"></a>00003 <span class="comment"> * this work for additional information regarding copyright ownership.</span>
@@ -188,8 +194,8 @@
 <a name="l00170"></a>00170 <span class="preprocessor"></span>
 <a name="l00171"></a>00171 <span class="preprocessor">#endif  </span><span class="comment">/* ! APR_MMAP_H */</span>
 </pre></div></div>
-<hr size="1"><address style="text-align: right;"><small>Generated on Sat Aug 16 21:30:11 2008 for Apache Portable Runtime by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Fri Feb 20 16:49:31 2009 for Apache Portable Runtime by&nbsp;
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.7.1 </small></address>
 </body>
 </html>

Modified: apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h.html?rev=746159&r1=746158&r2=746159&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h.html (original)
+++ apr/site/trunk/docs/docs/apr/trunk/apr__mmap_8h.html Fri Feb 20 06:08:22 2009
@@ -4,7 +4,7 @@
 <link href="doxygen.css" rel="stylesheet" type="text/css">
 <link href="tabs.css" rel="stylesheet" type="text/css">
 </head><body>
-<!-- Generated by Doxygen 1.5.6 -->
+<!-- Generated by Doxygen 1.5.7.1 -->
 <div class="navigation" id="top">
   <div class="tabs">
     <ul>
@@ -16,9 +16,16 @@
       <li><a href="examples.html"><span>Examples</span></a></li>
     </ul>
   </div>
+  <div class="tabs">
+    <ul>
+      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
+      <li><a href="globals.html"><span>Globals</span></a></li>
+    </ul>
+  </div>
 </div>
 <div class="contents">
-<h1>apr_mmap.h File Reference</h1>APR MMAP routines. <a href="#_details">More...</a>
+<h1>apr_mmap.h File Reference</h1>APR MMAP routines.  
+<a href="#_details">More...</a>
 <p>
 <code>#include &quot;<a class="el" href="apr_8h-source.html">apr.h</a>&quot;</code><br>
 <code>#include &quot;<a class="el" href="apr__pools_8h-source.html">apr_pools.h</a>&quot;</code><br>
@@ -60,8 +67,8 @@
 APR MMAP routines. 
 <p>
 </div>
-<hr size="1"><address style="text-align: right;"><small>Generated on Sat Aug 16 21:30:11 2008 for Apache Portable Runtime by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Fri Feb 20 16:49:31 2009 for Apache Portable Runtime by&nbsp;
 <a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
+<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.7.1 </small></address>
 </body>
 </html>