Import grep-2.7
[dragonfly.git] / contrib / grep / src / fgrep.c
1 #include <config.h>
2 #include "search.h"
3
4 struct matcher const matchers[] = {
5   { "fgrep", Fcompile, Fexecute },
6   { NULL, NULL, NULL },
7 };
8
9 const char before_options[] =
10 N_("PATTERN is a set of newline-separated fixed strings.\n");
11 const char after_options[] =
12 N_("Invocation as `fgrep' is deprecated; use `grep -F' instead.\n");