12+ results for '#include <regex.h>' (0 ms)
Not the results you expected?
regexp.cc (https://octave.svn.sourceforge.net/svnroot/octave) C++ · 140 lines
regexp.cc (https://octave.svn.sourceforge.net/svnroot/octave) C++ · 120 lines
regexp.cc (https://octave.svn.sourceforge.net/svnroot/octave) C++ · 139 lines
regexp.cc (https://octave.svn.sourceforge.net/svnroot/octave) C++ · 129 lines
hbregex.h
(https://harbour-project.svn.sourceforge.net/svnroot/harbour-project)
C++ Header · 146 lines
✨ Summary
This C++ header file provides a regular expression library for the Harbour project, a free and open-source implementation of Visual Basic for Applications (VBA). It includes functions for compiling, matching, and manipulating regular expressions, as well as data structures to store and manipulate regex patterns. The library is designed to be compatible with various platforms and regex engines.
This C++ header file provides a regular expression library for the Harbour project, a free and open-source implementation of Visual Basic for Applications (VBA). It includes functions for compiling, matching, and manipulating regular expressions, as well as data structures to store and manipulate regex patterns. The library is designed to be compatible with various platforms and regex engines.
s3-util.h
(https://amanda.svn.sourceforge.net/svnroot/amanda)
C++ Header · 125 lines
✨ Summary
This is a C header file that provides utility functions for working with regular expressions, base64 encoding, and MD5 hashing. It includes constants, types, and function declarations for tasks such as executing regular expressions, converting data to base64 or hexadecimal strings, and computing MD5 hashes of binary data.
This is a C header file that provides utility functions for working with regular expressions, base64 encoding, and MD5 hashing. It includes constants, types, and function declarations for tasks such as executing regular expressions, converting data to base64 or hexadecimal strings, and computing MD5 hashes of binary data.
filter.h (https://noffle.svn.sourceforge.net/svnroot/noffle) C Header · 99 lines
hbregex.h
(https://harbour-project.svn.sourceforge.net/svnroot/harbour-project)
C Header · 154 lines
✨ Summary
This C header file defines a regular expression library for Harbour, a programming language. It provides functions to compile and match regular expressions against strings, as well as free compiled regex objects. The library supports both POSIX and PCRE (Perl-Compatible Regular Expressions) syntax. It also includes constants for flags and error codes, allowing users to customize the behavior of the regex engine.
This C header file defines a regular expression library for Harbour, a programming language. It provides functions to compile and match regular expressions against strings, as well as free compiled regex objects. The library supports both POSIX and PCRE (Perl-Compatible Regular Expressions) syntax. It also includes constants for flags and error codes, allowing users to customize the behavior of the regex engine.
regex.c (https://crystal.svn.sourceforge.net/svnroot/crystal) C · 64 lines
regex_wrapper.h (https://crystal.svn.sourceforge.net/svnroot/crystal) C Header · 38 lines
regex_wrapper.h (https://crystal.svn.sourceforge.net/svnroot/crystal) C++ Header · 38 lines
regex_wrapper.h (https://crystal.svn.sourceforge.net/svnroot/crystal) C++ Header · 39 lines
20 #define __CS_UTIL_REGEX_WRAPPER_H__
22 #include "csplatform.h"
24 #ifdef CS_HAVE_REGEX
25 #include <regex.h>
26 #else
27 #if (defined(CS_COMPILER_MSVC) || defined(CS_COMPILER_BCC)) && \
30 #define __STDC__DEFINED
31 #endif
32 #include "generic/regex.h"
33 #ifdef __STDC__DEFINED
34 #undef __STDC__