]> diplodocus.org Git - nmh/blob - sbr/strindex.c
Alter mh-chart(7)'s NAME to be lowercase.
[nmh] / sbr / strindex.c
1
2 /*
3 * strindex.c -- "unsigned" lexical index
4 *
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
8 */
9
10 #include <h/mh.h>
11
12 int
13 stringdex (char *p1, char *p2)
14 {
15 char *p;
16
17 if (p1 == NULL || p2 == NULL)
18 return -1;
19
20 for (p = p2; *p; p++)
21 if (uprf (p, p1))
22 return (p - p2);
23
24 return -1;
25 }