00001 /************************************************* 00002 * Perl-Compatible Regular Expressions * 00003 *************************************************/ 00004 00005 /* PCRE is a library of functions to support regular expressions whose syntax 00006 and semantics are as close as possible to those of the Perl 5 language. 00007 00008 Written by Philip Hazel 00009 Copyright (c) 1997-2008 University of Cambridge 00010 00011 ----------------------------------------------------------------------------- 00012 Redistribution and use in source and binary forms, with or without 00013 modification, are permitted provided that the following conditions are met: 00014 00015 * Redistributions of source code must retain the above copyright notice, 00016 this list of conditions and the following disclaimer. 00017 00018 * Redistributions in binary form must reproduce the above copyright 00019 notice, this list of conditions and the following disclaimer in the 00020 documentation and/or other materials provided with the distribution. 00021 00022 * Neither the name of the University of Cambridge nor the names of its 00023 contributors may be used to endorse or promote products derived from 00024 this software without specific prior written permission. 00025 00026 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00027 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00028 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00029 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00030 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00031 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00032 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00033 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00034 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00035 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00036 POSSIBILITY OF SUCH DAMAGE. 00037 ----------------------------------------------------------------------------- 00038 */ 00039 00040 00041 /* This module contains the external function pcre_config(). */ 00042 00043 00044 #ifdef HAVE_CONFIG_H 00045 #include "config.h" 00046 #endif 00047 00048 #include "pcre_internal.h" 00049 00050 00051 /************************************************* 00052 * Return info about what features are configured * 00053 *************************************************/ 00054 00055 /* This function has an extensible interface so that additional items can be 00056 added compatibly. 00057 00058 Arguments: 00059 what what information is required 00060 where where to put the information 00061 00062 Returns: 0 if data returned, negative on error 00063 */ 00064 00065 PCRE_EXP_DEFN int PCRE_CALL_CONVENTION 00066 pcre_config(int what, void *where) 00067 { 00068 switch (what) 00069 { 00070 case PCRE_CONFIG_UTF8: 00071 #ifdef SUPPORT_UTF8 00072 *((int *)where) = 1; 00073 #else 00074 *((int *)where) = 0; 00075 #endif 00076 break; 00077 00078 case PCRE_CONFIG_UNICODE_PROPERTIES: 00079 #ifdef SUPPORT_UCP 00080 *((int *)where) = 1; 00081 #else 00082 *((int *)where) = 0; 00083 #endif 00084 break; 00085 00086 case PCRE_CONFIG_NEWLINE: 00087 *((int *)where) = NEWLINE; 00088 break; 00089 00090 case PCRE_CONFIG_BSR: 00091 #ifdef BSR_ANYCRLF 00092 *((int *)where) = 1; 00093 #else 00094 *((int *)where) = 0; 00095 #endif 00096 break; 00097 00098 case PCRE_CONFIG_LINK_SIZE: 00099 *((int *)where) = LINK_SIZE; 00100 break; 00101 00102 case PCRE_CONFIG_POSIX_MALLOC_THRESHOLD: 00103 *((int *)where) = POSIX_MALLOC_THRESHOLD; 00104 break; 00105 00106 case PCRE_CONFIG_MATCH_LIMIT: 00107 *((unsigned int *)where) = MATCH_LIMIT; 00108 break; 00109 00110 case PCRE_CONFIG_MATCH_LIMIT_RECURSION: 00111 *((unsigned int *)where) = MATCH_LIMIT_RECURSION; 00112 break; 00113 00114 case PCRE_CONFIG_STACKRECURSE: 00115 #ifdef NO_RECURSE 00116 *((int *)where) = 0; 00117 #else 00118 *((int *)where) = 1; 00119 #endif 00120 break; 00121 00122 default: return PCRE_ERROR_BADOPTION; 00123 } 00124 00125 return 0; 00126 } 00127 00128 /* End of pcre_config.c */