X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fstrindex.c;h=2513b306fa5a8add81a3d6948b7e5dc1eb37bdfb;hp=9a1e4fe7b5d999b6ded5b000fb636d3df4f79985;hb=714b5c530ece27ea2835a313013f5b770163403c;hpb=5dd6771b28c257af405d7248639ed0e3bcdce38b diff --git a/sbr/strindex.c b/sbr/strindex.c index 9a1e4fe..2513b30 100644 --- a/sbr/strindex.c +++ b/sbr/strindex.c @@ -1,25 +1,24 @@ - /* - * 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; + 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; }