Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1 | /* |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 2 | * Mini grep implementation for busybox using libc regex. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 3 | * |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 4 | * Copyright (C) 1999,2000,2001 by Lineo, inc. |
Mark Whitley | 6c6ea6c | 2001-01-04 22:21:13 +0000 | [diff] [blame] | 5 | * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 6 | * |
Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 23 | #include <stdio.h> |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 24 | #include <stdlib.h> |
Eric Andersen | e9b527a | 2000-07-09 05:56:14 +0000 | [diff] [blame] | 25 | #include <getopt.h> |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 26 | #include <regex.h> |
| 27 | #include <string.h> /* for strerror() */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 28 | #include <errno.h> |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 29 | #include "busybox.h" |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 30 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 31 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 32 | extern int optind; /* in unistd.h */ |
| 33 | extern int errno; /* for use with strerror() */ |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 34 | extern void xregcomp(regex_t *preg, const char *regex, int cflags); /* in busybox.h */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 35 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 36 | /* options */ |
| 37 | static int ignore_case = 0; |
| 38 | static int print_filename = 0; |
| 39 | static int print_line_num = 0; |
Mark Whitley | 8f12243 | 2000-07-18 18:37:01 +0000 | [diff] [blame] | 40 | static int print_count_only = 0; |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 41 | static int be_quiet = 0; |
| 42 | static int invert_search = 0; |
| 43 | static int suppress_err_msgs = 0; |
Eric Andersen | 303dd28 | 2001-04-09 23:26:31 +0000 | [diff] [blame] | 44 | static int files_that_match = 0; |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 45 | |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 46 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 47 | extern char *optarg; /* in getopt.h */ |
| 48 | static int lines_before = 0; |
| 49 | static int lines_after = 0; |
| 50 | static char **before_buf = NULL; |
| 51 | static int last_line_printed = 0; |
| 52 | #endif /* BB_FEATURE_GREP_CONTEXT */ |
| 53 | |
| 54 | /* globals used internally */ |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 55 | static regex_t regex; /* storage space for compiled regular expression */ |
Matt Kraai | deb95f6 | 2000-08-06 15:25:53 +0000 | [diff] [blame] | 56 | static int matched; /* keeps track of whether we ever matched */ |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 57 | static char *cur_file = NULL; /* the current file we are reading */ |
| 58 | |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 59 | static void print_line(const char *line, int linenum, char decoration) |
| 60 | { |
| 61 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 62 | /* possibly print the little '--' seperator */ |
| 63 | if (last_line_printed && last_line_printed < linenum - 1) { |
| 64 | puts("--"); |
| 65 | } |
| 66 | last_line_printed = linenum; |
| 67 | #endif |
| 68 | if (print_filename) |
| 69 | printf("%s%c", cur_file, decoration); |
| 70 | if (print_line_num) |
| 71 | printf("%i%c", linenum, decoration); |
| 72 | puts(line); |
| 73 | } |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 74 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 75 | static void grep_file(FILE *file) |
| 76 | { |
| 77 | char *line = NULL; |
| 78 | int ret; |
| 79 | int linenum = 0; |
Matt Kraai | deb95f6 | 2000-08-06 15:25:53 +0000 | [diff] [blame] | 80 | int nmatches = 0; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 81 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 82 | int print_n_lines_after = 0; |
| 83 | int curpos = 0; /* track where we are in the circular 'before' buffer */ |
| 84 | int idx = 0; /* used for iteration through the circular buffer */ |
| 85 | #endif /* BB_FEATURE_GREP_CONTEXT */ |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 86 | |
| 87 | while ((line = get_line_from_file(file)) != NULL) { |
Matt Kraai | 05e782d | 2001-02-01 16:49:30 +0000 | [diff] [blame] | 88 | chomp(line); |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 89 | linenum++; |
Mark Whitley | b5c2985 | 2001-02-01 21:02:41 +0000 | [diff] [blame] | 90 | |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 91 | /* |
| 92 | * test for a postitive-assertion match (regexec returns success (0) |
Mark Whitley | b5c2985 | 2001-02-01 21:02:41 +0000 | [diff] [blame] | 93 | * and the user did not specify invert search), or a negative-assertion |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 94 | * match (regexec returns failure (REG_NOMATCH) and the user specified |
| 95 | * invert search) |
| 96 | */ |
| 97 | ret = regexec(®ex, line, 0, NULL, 0); |
Mark Whitley | b5c2985 | 2001-02-01 21:02:41 +0000 | [diff] [blame] | 98 | if ((ret == 0 && !invert_search) || (ret == REG_NOMATCH && invert_search)) { |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 99 | |
| 100 | /* if we found a match but were told to be quiet, stop here and |
| 101 | * return success */ |
| 102 | if (be_quiet) { |
| 103 | regfree(®ex); |
| 104 | exit(0); |
| 105 | } |
| 106 | |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 107 | /* otherwise, keep track of matches and print the matched line */ |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 108 | nmatches++; |
Eric Andersen | 303dd28 | 2001-04-09 23:26:31 +0000 | [diff] [blame] | 109 | if (print_count_only==0 && files_that_match==0) { |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 110 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 111 | int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1; |
| 112 | |
| 113 | /* if we were told to print 'before' lines and there is at least |
| 114 | * one line in the circular buffer, print them */ |
Mark Whitley | 59a86ca | 2001-04-17 17:30:44 +0000 | [diff] [blame] | 115 | if (lines_before && before_buf[prevpos] != NULL) { |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 116 | int first_buf_entry_line_num = linenum - lines_before; |
| 117 | |
| 118 | /* advance to the first entry in the circular buffer, and |
| 119 | * figure out the line number is of the first line in the |
| 120 | * buffer */ |
| 121 | idx = curpos; |
| 122 | while (before_buf[idx] == NULL) { |
| 123 | idx = (idx + 1) % lines_before; |
| 124 | first_buf_entry_line_num++; |
| 125 | } |
| 126 | |
| 127 | /* now print each line in the buffer, clearing them as we go */ |
| 128 | while (before_buf[idx] != NULL) { |
| 129 | print_line(before_buf[idx], first_buf_entry_line_num, '-'); |
| 130 | free(before_buf[idx]); |
| 131 | before_buf[idx] = NULL; |
| 132 | idx = (idx + 1) % lines_before; |
| 133 | first_buf_entry_line_num++; |
| 134 | } |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | /* make a note that we need to print 'after' lines */ |
| 138 | print_n_lines_after = lines_after; |
| 139 | #endif /* BB_FEATURE_GREP_CONTEXT */ |
| 140 | print_line(line, linenum, ':'); |
Matt Kraai | 0810f72 | 2001-01-04 15:11:52 +0000 | [diff] [blame] | 141 | } |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 142 | } |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 143 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 144 | else { /* no match */ |
| 145 | /* Add the line to the circular 'before' buffer */ |
Mark Whitley | 59a86ca | 2001-04-17 17:30:44 +0000 | [diff] [blame] | 146 | if(lines_before) { |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 147 | if(before_buf[curpos]) |
| 148 | free(before_buf[curpos]); |
| 149 | before_buf[curpos] = strdup(line); |
| 150 | curpos = (curpos + 1) % lines_before; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | /* if we need to print some context lines after the last match, do so */ |
| 155 | if (print_n_lines_after && (last_line_printed != linenum)) { |
| 156 | print_line(line, linenum, '-'); |
| 157 | print_n_lines_after--; |
| 158 | } |
| 159 | #endif /* BB_FEATURE_GREP_CONTEXT */ |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 160 | free(line); |
| 161 | } |
Mark Whitley | 8f12243 | 2000-07-18 18:37:01 +0000 | [diff] [blame] | 162 | |
| 163 | /* special-case post processing */ |
Eric Andersen | 303dd28 | 2001-04-09 23:26:31 +0000 | [diff] [blame] | 164 | if (files_that_match) { |
| 165 | if (nmatches > 0) { |
| 166 | printf("%s", cur_file); |
| 167 | if (nmatches) |
| 168 | printf(":%d", nmatches); |
| 169 | printf("\n"); |
| 170 | } |
| 171 | } else if (print_count_only) { |
Mark Whitley | 8f12243 | 2000-07-18 18:37:01 +0000 | [diff] [blame] | 172 | if (print_filename) |
| 173 | printf("%s:", cur_file); |
| 174 | printf("%i\n", nmatches); |
Eric Andersen | 303dd28 | 2001-04-09 23:26:31 +0000 | [diff] [blame] | 175 | } |
Mark Whitley | 8f12243 | 2000-07-18 18:37:01 +0000 | [diff] [blame] | 176 | |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 177 | /* remember if we matched */ |
Matt Kraai | deb95f6 | 2000-08-06 15:25:53 +0000 | [diff] [blame] | 178 | if (nmatches != 0) |
| 179 | matched = 1; |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 180 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 181 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 182 | extern int grep_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 183 | { |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 184 | int opt; |
| 185 | int reflags; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 186 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 187 | char *junk; |
| 188 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 189 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 190 | /* do normal option parsing */ |
Eric Andersen | 303dd28 | 2001-04-09 23:26:31 +0000 | [diff] [blame] | 191 | while ((opt = getopt(argc, argv, "iHhlnqvsc" |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 192 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 193 | "A:B:C:" |
| 194 | #endif |
| 195 | )) > 0) { |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 196 | switch (opt) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 197 | case 'i': |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 198 | ignore_case++; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 199 | break; |
Eric Andersen | 303dd28 | 2001-04-09 23:26:31 +0000 | [diff] [blame] | 200 | case 'l': |
| 201 | files_that_match++; |
| 202 | break; |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 203 | case 'H': |
| 204 | print_filename++; |
| 205 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 206 | case 'h': |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 207 | print_filename--; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 208 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 209 | case 'n': |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 210 | print_line_num++; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 211 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 212 | case 'q': |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 213 | be_quiet++; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 214 | break; |
John Beppu | f93a95d | 2000-04-24 18:07:30 +0000 | [diff] [blame] | 215 | case 'v': |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 216 | invert_search++; |
John Beppu | f93a95d | 2000-04-24 18:07:30 +0000 | [diff] [blame] | 217 | break; |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 218 | case 's': |
| 219 | suppress_err_msgs++; |
| 220 | break; |
Mark Whitley | 8f12243 | 2000-07-18 18:37:01 +0000 | [diff] [blame] | 221 | case 'c': |
| 222 | print_count_only++; |
| 223 | break; |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 224 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 225 | case 'A': |
| 226 | lines_after = strtoul(optarg, &junk, 10); |
| 227 | if(*junk != '\0') |
| 228 | error_msg_and_die("invalid context length argument"); |
| 229 | break; |
| 230 | case 'B': |
| 231 | lines_before = strtoul(optarg, &junk, 10); |
| 232 | if(*junk != '\0') |
| 233 | error_msg_and_die("invalid context length argument"); |
| 234 | before_buf = (char **)calloc(lines_before, sizeof(char *)); |
| 235 | break; |
| 236 | case 'C': |
| 237 | lines_after = lines_before = strtoul(optarg, &junk, 10); |
| 238 | if(*junk != '\0') |
| 239 | error_msg_and_die("invalid context length argument"); |
| 240 | before_buf = (char **)calloc(lines_before, sizeof(char *)); |
| 241 | break; |
| 242 | #endif /* BB_FEATURE_GREP_CONTEXT */ |
Mark Whitley | 4391a16 | 2001-04-09 23:00:07 +0000 | [diff] [blame] | 243 | default: |
| 244 | show_usage(); |
Eric Andersen | 053b146 | 2000-06-13 06:24:53 +0000 | [diff] [blame] | 245 | } |
Eric Andersen | 053b146 | 2000-06-13 06:24:53 +0000 | [diff] [blame] | 246 | } |
| 247 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 248 | /* argv[optind] should be the regex pattern; no pattern, no worky */ |
| 249 | if (argv[optind] == NULL) |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 250 | show_usage(); |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 251 | |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 252 | /* sanity check */ |
Eric Andersen | 303dd28 | 2001-04-09 23:26:31 +0000 | [diff] [blame] | 253 | if (print_count_only || be_quiet || files_that_match) { |
Mark Whitley | 2fd5298 | 2001-02-09 00:41:10 +0000 | [diff] [blame] | 254 | print_line_num = 0; |
| 255 | #ifdef BB_FEATURE_GREP_CONTEXT |
| 256 | lines_before = 0; |
| 257 | lines_after = 0; |
| 258 | #endif |
| 259 | } |
| 260 | |
Mark Whitley | 44735f8 | 2000-07-10 15:50:26 +0000 | [diff] [blame] | 261 | /* compile the regular expression |
| 262 | * we're not going to mess with sub-expressions, and we need to |
| 263 | * treat newlines right. */ |
Matt Kraai | 567cdd1 | 2000-10-13 18:55:06 +0000 | [diff] [blame] | 264 | reflags = REG_NOSUB; |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 265 | if (ignore_case) |
| 266 | reflags |= REG_ICASE; |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 267 | xregcomp(®ex, argv[optind], reflags); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 268 | |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 269 | /* argv[(optind+1)..(argc-1)] should be names of file to grep through. If |
| 270 | * there is more than one file to grep, we will print the filenames */ |
| 271 | if ((argc-1) - (optind+1) > 0) |
| 272 | print_filename++; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 273 | |
Mark Whitley | 2e1148b | 2000-06-28 22:59:30 +0000 | [diff] [blame] | 274 | /* If no files were specified, or '-' was specified, take input from |
| 275 | * stdin. Otherwise, we grep through all the files specified. */ |
Mark Whitley | 8bd891c | 2000-06-28 22:55:59 +0000 | [diff] [blame] | 276 | if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) { |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 277 | grep_file(stdin); |
Mark Whitley | 2ef880b | 2000-07-18 21:02:06 +0000 | [diff] [blame] | 278 | } |
| 279 | else { |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 280 | int i; |
| 281 | FILE *file; |
| 282 | for (i = optind + 1; i < argc; i++) { |
| 283 | cur_file = argv[i]; |
| 284 | file = fopen(cur_file, "r"); |
| 285 | if (file == NULL) { |
| 286 | if (!suppress_err_msgs) |
Matt Kraai | 1fa1ade | 2000-12-18 03:57:16 +0000 | [diff] [blame] | 287 | perror_msg("%s", cur_file); |
Mark Whitley | 2ef880b | 2000-07-18 21:02:06 +0000 | [diff] [blame] | 288 | } |
| 289 | else { |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 290 | grep_file(file); |
| 291 | fclose(file); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 292 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 293 | } |
| 294 | } |
Mark Whitley | d372189 | 2000-06-28 22:00:26 +0000 | [diff] [blame] | 295 | |
| 296 | regfree(®ex); |
| 297 | |
Mark Whitley | b5c2985 | 2001-02-01 21:02:41 +0000 | [diff] [blame] | 298 | return !matched; /* invert return value 0 = success, 1 = failed */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 299 | } |