X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fstrindex.c;h=fdde7fdfc206d3aec5a538794945932abcba2342;hp=03910fdff32e014603741d6e8fafb198be21d40f;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b diff --git a/sbr/strindex.c b/sbr/strindex.c index 03910fd..fdde7fd 100644 --- a/sbr/strindex.c +++ b/sbr/strindex.c @@ -1,23 +1,24 @@ - /* - * strindex.c -- "unsigned" lexical index - * - * $Id$ - */ +** 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 int stringdex (char *p1, char *p2) { - char *p; + char *p; - if (p1 == NULL || p2 == NULL) - return -1; + if (p1 == NULL || p2 == NULL) + return -1; - for (p = p2; *p; p++) - if (uprf (p, p1)) - return (p - p2); + for (p = p2; *p; p++) + if (uprf (p, p1)) + return (p - p2); - return -1; + return -1; }