Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtksh / ksh93 / src / lib / libast / include / re.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: re.h /main/3 1995/11/01 17:38:54 rswiston $ */
24 /***************************************************************
25 *                                                              *
26 *                      AT&T - PROPRIETARY                      *
27 *                                                              *
28 *         THIS IS PROPRIETARY SOURCE CODE LICENSED BY          *
29 *                          AT&T CORP.                          *
30 *                                                              *
31 *                Copyright (c) 1995 AT&T Corp.                 *
32 *                     All Rights Reserved                      *
33 *                                                              *
34 *           This software is licensed by AT&T Corp.            *
35 *       under the terms and conditions of the license in       *
36 *       http://www.research.att.com/orgs/ssr/book/reuse        *
37 *                                                              *
38 *               This software was created by the               *
39 *           Software Engineering Research Department           *
40 *                    AT&T Bell Laboratories                    *
41 *                                                              *
42 *               For further information contact                *
43 *                     gsf@research.att.com                     *
44 *                                                              *
45 ***************************************************************/
46
47 /* : : generated by proto : : */
48                   
49 /*
50  * Glenn Fowler
51  * AT&T Bell Laboratories
52  *
53  * regular expression library definitions
54  */
55
56 #ifndef _RE_H
57 #if !defined(__PROTO__)
58 #if defined(__STDC__) || defined(__cplusplus) || defined(_proto) || defined(c_plusplus)
59 #if defined(__cplusplus)
60 #define __MANGLE__      "C"
61 #else
62 #define __MANGLE__
63 #endif
64 #define __STDARG__
65 #define __PROTO__(x)    x
66 #define __OTORP__(x)
67 #define __PARAM__(n,o)  n
68 #if !defined(__STDC__) && !defined(__cplusplus)
69 #if !defined(c_plusplus)
70 #define const
71 #endif
72 #define signed
73 #define void            int
74 #define volatile
75 #define __V_            char
76 #else
77 #define __V_            void
78 #endif
79 #else
80 #define __PROTO__(x)    ()
81 #define __OTORP__(x)    x
82 #define __PARAM__(n,o)  o
83 #define __MANGLE__
84 #define __V_            char
85 #define const
86 #define signed
87 #define void            int
88 #define volatile
89 #endif
90 #if defined(__cplusplus) || defined(c_plusplus)
91 #define __VARARG__      ...
92 #else
93 #define __VARARG__
94 #endif
95 #if defined(__STDARG__)
96 #define __VA_START__(p,a)       va_start(p,a)
97 #else
98 #define __VA_START__(p,a)       va_start(p)
99 #endif
100 #endif
101
102 #define _RE_H
103
104 #include <sfio.h>
105
106 #define RE_ALL          (1<<0)  /* substitute all occurrences           */
107 #define RE_EDSTYLE      (1<<1)  /* ed(1) style magic characters         */
108 #define RE_LOWER        (1<<2)  /* substitute to lower case             */
109 #define RE_MATCH        (1<<3)  /* record matches in Re_program_t.match */
110 #define RE_UPPER        (1<<4)  /* substitute to upper case             */
111 #define RE_EXTERNAL     8       /* first external flag bit              */
112
113 typedef struct                  /* sub-expression match                 */
114 {
115         char*   sp;             /* start in source string               */
116         char*   ep;             /* end in source string                 */
117 } Re_match_t;
118
119 typedef struct                  /* compiled regular expression program  */
120 {
121 #ifdef _RE_PROGRAM_PRIVATE_
122         _RE_PROGRAM_PRIVATE_
123 #else
124         Re_match_t      match['9'-'0'+1];/* sub-expression match table*/
125 #endif
126 } Re_program_t, reprogram;
127
128 /*
129  * interface routines
130  */
131
132 extern __MANGLE__ Re_program_t* recomp __PROTO__((const char*, int));
133 extern __MANGLE__ int           reexec __PROTO__((Re_program_t*, const char*));
134 extern __MANGLE__ void          refree __PROTO__((Re_program_t*));
135 extern __MANGLE__ void          reerror __PROTO__((const char*));
136 extern __MANGLE__ char*         resub __PROTO__((Re_program_t*, const char*, const char*, char*, int));
137 extern __MANGLE__ void          ressub __PROTO__((Re_program_t*, Sfio_t*, const char*, const char*, int));
138
139 #endif