00001 /* ==================================================================== 00002 * The Apache Software License, Version 1.1 00003 * 00004 * Copyright (c) 2000-2003 The Apache Software Foundation. All rights 00005 * reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions 00009 * are met: 00010 * 00011 * 1. Redistributions of source code must retain the above copyright 00012 * notice, this list of conditions and the following disclaimer. 00013 * 00014 * 2. Redistributions in binary form must reproduce the above copyright 00015 * notice, this list of conditions and the following disclaimer in 00016 * the documentation and/or other materials provided with the 00017 * distribution. 00018 * 00019 * 3. The end-user documentation included with the redistribution, 00020 * if any, must include the following acknowledgment: 00021 * "This product includes software developed by the 00022 * Apache Software Foundation (http://www.apache.org/)." 00023 * Alternately, this acknowledgment may appear in the software itself, 00024 * if and wherever such third-party acknowledgments normally appear. 00025 * 00026 * 4. The names "Apache" and "Apache Software Foundation" must 00027 * not be used to endorse or promote products derived from this 00028 * software without prior written permission. For written 00029 * permission, please contact apache@apache.org. 00030 * 00031 * 5. Products derived from this software may not be called "Apache", 00032 * nor may "Apache" appear in their name, without prior written 00033 * permission of the Apache Software Foundation. 00034 * 00035 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED 00036 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00037 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00038 * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR 00039 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00040 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00041 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 00042 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00043 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 00044 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 00045 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00046 * SUCH DAMAGE. 00047 * ==================================================================== 00048 * 00049 * This software consists of voluntary contributions made by many 00050 * individuals on behalf of the Apache Software Foundation. For more 00051 * information on the Apache Software Foundation, please see 00052 * <http://www.apache.org/>. 00053 */ 00054 00055 #ifndef APR_LIB_H 00056 #define APR_LIB_H 00057 00066 #include "apr.h" 00067 #include "apr_errno.h" 00068 00069 #if APR_HAVE_CTYPE_H 00070 #include <ctype.h> 00071 #endif 00072 #if APR_HAVE_STDARG_H 00073 #include <stdarg.h> 00074 #endif 00075 00076 #ifdef __cplusplus 00077 extern "C" { 00078 #endif /* __cplusplus */ 00079 00090 #define HUGE_STRING_LEN 8192 00091 00092 /* 00093 * Define the structures used by the APR general-purpose library. 00094 */ 00095 00097 typedef struct apr_vformatter_buff_t apr_vformatter_buff_t; 00098 00102 struct apr_vformatter_buff_t { 00104 char *curpos; 00106 char *endpos; 00107 }; 00108 00122 APR_DECLARE(const char *) apr_filepath_name_get(const char *pathname); 00123 00125 APR_DECLARE(const char *) apr_filename_of_pathname(const char *pathname); 00126 00133 #ifdef WIN32 00134 #define apr_killpg(x, y) 00135 #else /* WIN32 */ 00136 #ifdef NO_KILLPG 00137 #define apr_killpg(x, y) (kill (-(x), (y))) 00138 #else /* NO_KILLPG */ 00139 #define apr_killpg(x, y) (killpg ((x), (y))) 00140 #endif /* NO_KILLPG */ 00141 #endif /* WIN32 */ 00142 00204 APR_DECLARE(int) apr_vformatter(int (*flush_func)(apr_vformatter_buff_t *b), 00205 apr_vformatter_buff_t *c, const char *fmt, 00206 va_list ap); 00207 00214 APR_DECLARE(apr_status_t) apr_password_get(const char *prompt, char *pwbuf, 00215 apr_size_t *bufsize); 00216 00228 #define apr_isalnum(c) (isalnum(((unsigned char)(c)))) 00229 00230 #define apr_isalpha(c) (isalpha(((unsigned char)(c)))) 00231 00232 #define apr_iscntrl(c) (iscntrl(((unsigned char)(c)))) 00233 00234 #define apr_isdigit(c) (isdigit(((unsigned char)(c)))) 00235 00236 #define apr_isgraph(c) (isgraph(((unsigned char)(c)))) 00237 00238 #define apr_islower(c) (islower(((unsigned char)(c)))) 00239 00240 #ifdef isascii 00241 #define apr_isascii(c) (isascii(((unsigned char)(c)))) 00242 #else 00243 #define apr_isascii(c) (((c) & ~0x7f)==0) 00244 #endif 00245 00246 #define apr_isprint(c) (isprint(((unsigned char)(c)))) 00247 00248 #define apr_ispunct(c) (ispunct(((unsigned char)(c)))) 00249 00250 #define apr_isspace(c) (isspace(((unsigned char)(c)))) 00251 00252 #define apr_isupper(c) (isupper(((unsigned char)(c)))) 00253 00254 #define apr_isxdigit(c) (isxdigit(((unsigned char)(c)))) 00255 00256 #define apr_tolower(c) (tolower(((unsigned char)(c)))) 00257 00258 #define apr_toupper(c) (toupper(((unsigned char)(c)))) 00259 00262 #ifdef __cplusplus 00263 } 00264 #endif 00265 00266 #endif /* ! APR_LIB_H */