X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0a032eea07f6d77ac6ea4d5a39c9491c34358058..5bc2777230cdc4cea23ff87df356af3fb0cfadf9:/sbr/strindex.c diff --git a/sbr/strindex.c b/sbr/strindex.c index 88b9d1f6..559e7549 100644 --- a/sbr/strindex.c +++ b/sbr/strindex.c @@ -1,12 +1,13 @@ -/* - * strindex.c -- "unsigned" lexical index +/* strindex.c -- "unsigned" lexical index * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. */ -#include +#include "h/mh.h" +#include "strindex.h" +#include "uprf.h" int stringdex (char *p1, char *p2) @@ -18,7 +19,7 @@ stringdex (char *p1, char *p2) for (p = p2; *p; p++) if (uprf (p, p1)) - return (p - p2); + return p - p2; return -1; }