regex.h | regex.h | |||
---|---|---|---|---|
/* | /* | |||
regex.h - POSIX.2 compatible regexp interface and TRE extensions | regex.h - POSIX.2 compatible regexp interface and TRE extensions | |||
Copyright (c) 2001-2006 Ville Laurikari <vl@iki.fi>. | This software is released under a BSD-style license. | |||
See the file LICENSE for details and copyright. | ||||
This library is free software; you can redistribute it and/or | ||||
modify it under the terms of the GNU Lesser General Public | ||||
License as published by the Free Software Foundation; either | ||||
version 2.1 of the License, or (at your option) any later version. | ||||
This library is distributed in the hope that it will be useful, | ||||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||||
Lesser General Public License for more details. | ||||
You should have received a copy of the GNU Lesser General Public | ||||
License along with this library; if not, write to the Free Software | ||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 US | ||||
A | ||||
*/ | */ | |||
#ifndef TRE_REGEX_H | #ifndef TRE_REGEX_H | |||
#define TRE_REGEX_H 1 | #define TRE_REGEX_H 1 | |||
#include "tre-config.h" | #include "tre-config.h" | |||
#ifdef HAVE_SYS_TYPES_H | #ifdef HAVE_SYS_TYPES_H | |||
#include <sys/types.h> | #include <sys/types.h> | |||
End of changes. 1 change blocks. | ||||
16 lines changed or deleted | 2 lines changed or added | |||
tre-config.h | tre-config.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
/* Define to the absolute path to the system regex.h */ | /* Define to the absolute path to the system regex.h */ | |||
/* #undef TRE_SYSTEM_REGEX_H_PATH */ | /* #undef TRE_SYSTEM_REGEX_H_PATH */ | |||
/* Define to include the system regex.h from TRE regex.h */ | /* Define to include the system regex.h from TRE regex.h */ | |||
/* #undef TRE_USE_SYSTEM_REGEX_H */ | /* #undef TRE_USE_SYSTEM_REGEX_H */ | |||
/* Define to enable wide character (wchar_t) support. */ | /* Define to enable wide character (wchar_t) support. */ | |||
#define TRE_WCHAR 1 | #define TRE_WCHAR 1 | |||
/* TRE version string. */ | /* TRE version string. */ | |||
#define TRE_VERSION "0.7.5" | #define TRE_VERSION "0.7.6" | |||
/* TRE version level 1. */ | /* TRE version level 1. */ | |||
#define TRE_VERSION_1 0 | #define TRE_VERSION_1 0 | |||
/* TRE version level 2. */ | /* TRE version level 2. */ | |||
#define TRE_VERSION_2 7 | #define TRE_VERSION_2 7 | |||
/* TRE version level 3. */ | /* TRE version level 3. */ | |||
#define TRE_VERSION_3 5 | #define TRE_VERSION_3 6 | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||