1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
* Changes by Gunnar Ritter, Freiburg i. Br., Germany, November 2002.
*
* Sccsid @(#)stubs.c 1.27 (gritter) 6/26/05
*/
/* UNIX(R) Regular Expresssion Library
*
* Note: Code is released under the GNU LGPL
*
* Copyright (C) 2001 Caldera International, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to:
* Free Software Foundation, Inc.
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* stubbed-out routines needed to complete the RE libc code */
#include "colldata.h"
struct lc_collate *
libuxre_lc_collate(struct lc_collate *cp)
{
static struct lc_collate curinfo; /* means CHF_ENCODED */
(void)cp;
return &curinfo;
}
#include "wcharm.h"
LIBUXRE_STATIC int
libuxre_mb2wc(w_type *wt, const unsigned char *s)
{
wchar_t wc;
int len;
if ((len = mbtowc(&wc, (const char *)&s[-1], MB_LEN_MAX)) > 0)
*wt = wc;
else if (len == 0)
*wt = '\0';
else /*if (len < 0)*/
*wt = (w_type)WEOF;
return len > 0 ? len - 1 : len;
}
#if __GNUC__ >= 3 && __GNUC_MINOR__ >= 4 || __GNUC__ >= 4
#define USED __attribute__ ((used))
#elif defined __GNUC__
#define USED __attribute__ ((unused))
#else
#define USED
#endif
static const char sccsid[] USED = "@(#)libuxre.sl 1.27 (gritter) 6/26/05";
/* SLIST */
/*
_collelem.c: * Sccsid @(#)_collelem.c 1.4 (gritter) 10/18/03
_collmult.c: * Sccsid @(#)_collmult.c 1.4 (gritter) 9/22/03
bracket.c: * Sccsid @(#)bracket.c 1.14 (gritter) 10/18/03
colldata.h: * Sccsid @(#)colldata.h 1.5 (gritter) 5/1/04
onefile.c: * Sccsid @(#)onefile.c 1.1 (gritter) 9/22/03
re.h: * Sccsid @(#)re.h 1.15 (gritter) 2/6/05
regcomp.c: * Sccsid @(#)regcomp.c 1.6 (gritter) 9/22/03
regdfa.c: * Sccsid @(#)regdfa.c 1.9 (gritter) 9/22/03
regdfa.h: * Sccsid @(#)regdfa.h 1.3 (gritter) 9/22/03
regerror.c: * Sccsid @(#)regerror.c 1.4 (gritter) 3/29/03
regex.h: * Sccsid @(#)regex.h 1.13 (gritter) 2/6/05
regexec.c: * Sccsid @(#)regexec.c 1.7 (gritter) 2/6/05
regfree.c: * Sccsid @(#)regfree.c 1.3 (gritter) 9/22/03
regnfa.c: * Sccsid @(#)regnfa.c 1.8 (gritter) 2/6/05
regparse.c: * Sccsid @(#)regparse.c 1.12 (gritter) 9/22/03
wcharm.h: * Sccsid @(#)wcharm.h 1.12 (gritter) 10/18/03
*/
|