X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fstrindex.c;h=2513b306fa5a8add81a3d6948b7e5dc1eb37bdfb;hp=92245b2faf648420dfabbc8827bdee5b018a87b2;hb=714b5c530ece27ea2835a313013f5b770163403c;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1 diff --git a/sbr/strindex.c b/sbr/strindex.c index 92245b2..2513b30 100644 --- a/sbr/strindex.c +++ b/sbr/strindex.c @@ -1,15 +1,15 @@ /* - * 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. - */ +** 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) +stringdex(char *p1, char *p2) { char *p; @@ -17,7 +17,7 @@ stringdex (char *p1, char *p2) return -1; for (p = p2; *p; p++) - if (uprf (p, p1)) + if (uprf(p, p1)) return (p - p2); return -1;