/src/include/ |
regexp.h | 1 /* $NetBSD: regexp.h,v 1.7 2005/02/03 04:39:32 perry Exp $ */ 34 * @(#)regexp.h 8.1 (Berkeley) 6/2/93 71 * @(#)regexp.h 8.1 (Berkeley) 6/2/93 78 * Definitions etc. for regexp(3) routines. 80 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof], 84 typedef struct regexp { struct 92 } regexp; typedef in typeref:struct:regexp 98 regexp *__compat_regcomp(const char *); 99 int __compat_regexec(const regexp *, const char *); 100 void __compat_regsub(const regexp *, const char *, char *) [all...] |
/src/sbin/efi/ |
showvar.c | 532 const char *regexp = REGEXP_BOOTXXXX; local in function:show_variable 533 if (regcomp(&preg, regexp, REG_EXTENDED) != 0) 534 err(EXIT_FAILURE, "regcomp: %s", regexp);
|
/src/usr.bin/find/ |
function.c | 1654 * -regex regexp (and related) functions -- 1656 * True if the complete file path matches the regular expression regexp. 1657 * For -regex, regexp is a case-sensitive (basic) regular expression. 1658 * For -iregex, regexp is a case-insensitive (basic) regular expression. 1672 char *regexp = **argvp; local in function:c_regex_common 1680 len = strlen(regexp) + 1 + 6; 1685 (regcomp_flags & REG_EXTENDED) ? "" : "\\", regexp, 1692 errx(1, "regexp %s: %s", regexp, errbuf);
|