Deleted Added
full compact
regex.h (123597) regex.h (123630)
1/*-
2 * Copyright (c) 1992 Henry Spencer.
3 * Copyright (c) 1992, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Henry Spencer of the University of Toronto.
8 *

--- 21 unchanged lines hidden (view full) ---

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)regex.h 8.2 (Berkeley) 1/3/94
1/*-
2 * Copyright (c) 1992 Henry Spencer.
3 * Copyright (c) 1992, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Henry Spencer of the University of Toronto.
8 *

--- 21 unchanged lines hidden (view full) ---

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)regex.h 8.2 (Berkeley) 1/3/94
38 * $FreeBSD: head/include/regex.h 123597 2003-12-17 10:54:05Z jkh $
38 * $FreeBSD: head/include/regex.h 123630 2003-12-18 07:42:08Z jkh $
39 */
40
41#ifndef _REGEX_H_
42#define _REGEX_H_
43
44#include <sys/cdefs.h>
45#include <sys/_types.h>
46

--- 23 unchanged lines hidden (view full) ---

70#define REG_ICASE 0002
71#define REG_NOSUB 0004
72#define REG_NEWLINE 0010
73#define REG_NOSPEC 0020
74#define REG_PEND 0040
75#define REG_DUMP 0200
76
77/* regerror() flags */
39 */
40
41#ifndef _REGEX_H_
42#define _REGEX_H_
43
44#include <sys/cdefs.h>
45#include <sys/_types.h>
46

--- 23 unchanged lines hidden (view full) ---

70#define REG_ICASE 0002
71#define REG_NOSUB 0004
72#define REG_NEWLINE 0010
73#define REG_NOSPEC 0020
74#define REG_PEND 0040
75#define REG_DUMP 0200
76
77/* regerror() flags */
78#define REG_ENOSYS -1 /* Reserved */
78#define REG_ENOSYS -1
79#define REG_NOMATCH 1
80#define REG_BADPAT 2
81#define REG_ECOLLATE 3
82#define REG_ECTYPE 4
83#define REG_EESCAPE 5
84#define REG_ESUBREG 6
85#define REG_EBRACK 7
86#define REG_EPAREN 8

--- 33 unchanged lines hidden ---
79#define REG_NOMATCH 1
80#define REG_BADPAT 2
81#define REG_ECOLLATE 3
82#define REG_ECTYPE 4
83#define REG_EESCAPE 5
84#define REG_ESUBREG 6
85#define REG_EBRACK 7
86#define REG_EPAREN 8

--- 33 unchanged lines hidden ---