1 /* RCS keyword table and match operation */
3 /* Copyright 1982, 1988, 1989 Walter Tichy
4 Copyright 1990, 1991, 1992, 1993, 1995 Paul Eggert
5 Distributed under license by the Free Software Foundation, Inc.
7 This file is part of RCS.
9 RCS is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 RCS is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with RCS; see the file COPYING.
21 If not, write to the Free Software Foundation,
22 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 Report problems and direct all questions to:
26 rcs-bugs@cs.purdue.edu
32 * Revision 1.1 2003/06/11 15:56:10 darkwyrm
33 * Added rcs, gzip, sed, and associated utilities.
35 * Revision 5.4 1995/06/16 06:19:24 eggert
38 * Revision 5.3 1993/11/03 17:42:27 eggert
41 * Revision 5.2 1991/08/19 03:13:55 eggert
42 * Say `T const' instead of `const T'; it's less confusing for pointer types.
43 * (This change was made in other source files too.)
45 * Revision 5.1 1991/04/21 11:58:25 eggert
46 * Don't put , just before } in initializer.
48 * Revision 5.0 1990/08/22 08:12:54 eggert
49 * Add -k. Ansify and Posixate.
51 * Revision 4.3 89/05/01 15:13:02 narten
52 * changed copyright header to reflect current distribution rules
54 * Revision 4.2 87/10/18 10:36:33 narten
55 * Updating version numbers. Changes relative to 1.1 actuallyt
58 * Revision 1.2 87/09/24 14:00:10 narten
59 * Sources now pass through lint (if you ignore printf/sprintf/fprintf
62 * Revision 4.1 83/05/04 10:06:53 wft
70 libId(keysId
, "$Id: rcskeys.c 3476 2003-06-11 15:56:10Z darkwyrm $")
73 char const *const Keyword
[] = {
74 /* This must be in the same order as rcsbase.h's enum markers type. */
76 AUTHOR
, DATE
, HEADER
, IDH
,
77 LOCKER
, LOG
, NAME
, RCSFILE
, REVISION
, SOURCE
, STATE
85 /* function: Checks whether string starts with a keyword followed
86 * by a KDELIM or a VDELIM.
87 * If successful, returns the appropriate marker, otherwise Nomatch.
91 register char const *p
, *s
;
92 for (j
= sizeof(Keyword
)/sizeof(*Keyword
); (--j
); ) {
93 /* try next keyword */
96 while (*p
++ == *s
++) {
101 return (enum markers
)j
;