4 * Copyright (c) 1986 by University of Toronto.
5 * Written by Henry Spencer. Not derived from licensed software.
7 * Permission is granted to anyone to use this software for any
8 * purpose on any computer system, and to redistribute it freely,
9 * subject to the following restrictions:
11 * 1. The author is not responsible for the consequences of use of
12 * this software, no matter how awful, even if they arise
15 * 2. The origin of this software must not be misrepresented, either
16 * by explicit claim or by omission.
18 * 3. Altered versions must be plainly marked as such, and must not
19 * be misrepresented as being the original software.
26 #define UCHARAT(p) ((int)*(unsigned char *)(p))
28 #define UCHARAT(p) ((int)*(p)&CHARBITS)
32 - regsub - perform substitutions after a regexp match
35 regsub(prog
, source
, dest
)
45 /* extern char *strncpy(); */
47 if (prog
== NULL
|| source
== NULL
|| dest
== NULL
) {
48 regerror("NULL parm to regsub");
51 if (UCHARAT(prog
->program
) != MAGIC
) {
52 regerror("damaged regexp fed to regsub");
58 while ((c
= *src
++) != '\0') {
61 else if (c
== '\\' && '0' <= *src
&& *src
<= '9')
66 if (no
< 0) /* Ordinary character. */
68 else if (prog
->startp
[no
] != NULL
&& prog
->endp
[no
] != NULL
) {
69 len
= prog
->endp
[no
] - prog
->startp
[no
];
70 (void) strncpy(dst
, prog
->startp
[no
], len
);
72 if (len
!= 0 && *(dst
-1) == '\0') { /* strncpy hit NUL. */
73 regerror("damaged match string");