/CS/migrated/tags/PRE_OR_REMOVAL/libs/csutil/regex_wrapper.h
# · C Header · 37 lines · 16 code · 4 blank · 17 comment · 1 complexity · fc867ef70bf31ecc5e39bb6d5c4f79a0 MD5 · raw file
- /*
- Copyright (C) 2004 by Frank Richter
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 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
- Library General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the Free
- Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
- #ifndef __CS_UTIL_REGEX_WRAPPER_H__
- #define __CS_UTIL_REGEX_WRAPPER_H__
- #include "csplatform.h"
- #ifdef CS_HAS_REGEX
- #include <regex.h>
- #else
- #if defined(CS_COMPILER_MSVC) && !defined(__STDC__)
- #define __STDC__ 1
- #define __STDC__DEFINED
- #endif
- #include "generic/regex.h"
- #ifdef __STDC__DEFINED
- #undef __STDC__
- #endif
- #endif
- #endif // __CS_UTIL_REGEX_WRAPPER_H__