source: trunk/src/emx/include/xregex.h@ 2200

Last change on this file since 2200 was 1506, checked in by bird, 21 years ago

@unixroot. header reviews. ++

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 865 bytes
Line 
1/* xregex.h,v 1.2 2004/09/14 22:27:36 bird Exp */
2/** @file
3 * GNU, -liberty.
4 */
5
6/* This file redefines all regex external names before including
7 a renamed copy of glibc's regex.h. */
8
9#ifndef _XREGEX_H
10#define _XREGEX_H 1
11
12# define regfree xregfree
13# define regexec xregexec
14# define regcomp xregcomp
15# define regerror xregerror
16# define re_set_registers xre_set_registers
17# define re_match_2 xre_match_2
18# define re_match xre_match
19# define re_search xre_search
20# define re_compile_pattern xre_compile_pattern
21# define re_set_syntax xre_set_syntax
22# define re_search_2 xre_search_2
23# define re_compile_fastmap xre_compile_fastmap
24# define re_syntax_options xre_syntax_options
25# define re_max_failures xre_max_failures
26
27# define _REGEX_RE_COMP
28# define re_comp xre_comp
29# define re_exec xre_exec
30
31#include "xregex2.h"
32
33#endif /* xregex.h */
Note: See TracBrowser for help on using the repository browser.