| 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 | |
|