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

9 */

10

11 #include <octave/oct.h>

12 #ifndef OCTAVE_LOCAL_BUFFER

13 #include <vector>

20 #define __restrict

21 #endif

22 #include <regex.h>

23

24 DEFUN_DLD(regexp,args,nargout,"\

regexp.cc (https://octave.svn.sourceforge.net/svnroot/octave) C++ · 120 lines

11 #include <octave/oct.h>

12 #include <regex.h>

13

14 DEFUN_DLD(regexp,args,nargout,"\

regexp.cc (https://octave.svn.sourceforge.net/svnroot/octave) C++ · 139 lines

9 */

10

11 #include <octave/oct.h>

12 #ifndef OCTAVE_LOCAL_BUFFER

13 #include <vector>

19

20

21 #include <regex.h>

22

23 DEFUN_DLD(regexp,args,nargout,"\

regexp.cc (https://octave.svn.sourceforge.net/svnroot/octave) C++ · 129 lines

9 */

10

11 #include <octave/oct.h>

12 #include <memory>

19

20

21 #include <regex.h>

22

23 DEFUN_DLD(regexp,args,nargout,"\

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.

54 #define HB_REGEX_H_

55

56 #include "hbapi.h"

57

58 #if defined( _HB_REGEX_INTERNAL_ )

63 #elif defined( HB_OS_UNIX )

64 # include <sys/types.h>

65 # include <regex.h>

66 # define HB_POSIX_REGEX

67 #elif defined( __BORLANDC__ )

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.

26 # include <sys/types.h>

27 # endif

28 #include <regex.h>

29 #endif

30 #include <glib.h>

filter.h (https://noffle.svn.sourceforge.net/svnroot/noffle) C Header · 99 lines

12 #include <sys/types.h>

13 #include <regex.h>

14 #include "fetchlist.h"

15 #include "over.h"

16

17 /* The possible actions in a filter. */

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.

54 #define HB_REGEX_H_

55

56 #include "hbapi.h"

57

58 #if defined( _HB_REGEX_INTERNAL_ )

69 #elif defined( HB_POSIX_REGEX )

70 # include <sys/types.h>

71 # include <regex.h>

72 #else

73 # define HB_PCRE_REGEX

regex.c (https://crystal.svn.sourceforge.net/svnroot/crystal) C · 64 lines

44

45 /* POSIX says that <sys/types.h> must be included (by the caller) before

46 <regex.h>. */

47 #include <stdlib.h>

48 #include <sys/types.h>

49 #include "../regex_wrapper.h"

50 #include "regex_internal.h"

51

52 #include "regex_internal.c"

53 #include "regcomp.c"

54 #include "regexec.c"

regex_wrapper.h (https://crystal.svn.sourceforge.net/svnroot/crystal) C Header · 38 lines

20 #define __CS_UTIL_REGEX_WRAPPER_H__

21

22 #include "csplatform.h"

23

24 #ifdef CS_HAS_REGEX

25 #include <regex.h>

26 #else

27 #if defined(CS_COMPILER_MSVC) && !defined(__STDC__)

29 #define __STDC__DEFINED

30 #endif

31 #include "generic/regex.h"

32 #ifdef __STDC__DEFINED

33 #undef __STDC__

regex_wrapper.h (https://crystal.svn.sourceforge.net/svnroot/crystal) C++ Header · 38 lines

20 #define __CS_UTIL_REGEX_WRAPPER_H__

21

22 #include "platform.h"

23

24 #ifdef CS_HAS_REGEX

25 #include <regex.h>

26 #else

27 #if defined(COMP_VC) && !defined(__STDC__)

29 #define __STDC__DEFINED

30 #endif

31 #include "generic/regex.h"

32 #ifdef __STDC__DEFINED

33 #undef __STDC__

regex_wrapper.h (https://crystal.svn.sourceforge.net/svnroot/crystal) C++ Header · 39 lines

20 #define __CS_UTIL_REGEX_WRAPPER_H__

21

22 #include "csplatform.h"

23

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__