X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;ds=sidebyside;f=sbr%2Fr1bindex.c;h=93ec950c0c4a88bbf2bf1ae068c5ab61cf7ac461;hb=a485ed478abbd599d8c9aab48934e7a26733ecb1;hp=92e152dbc7303b4d05ce1012a14bf9f94be2a59a;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/sbr/r1bindex.c b/sbr/r1bindex.c index 92e152d..93ec950 100644 --- a/sbr/r1bindex.c +++ b/sbr/r1bindex.c @@ -1,12 +1,9 @@ - /* * r1bindex.c -- Given a string and a character, return a pointer * -- to the right of the rightmost occurrence of the * -- character. If the character doesn't occur, the * -- pointer will be at the beginning of the string. * - * $Id$ - * * 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. @@ -18,19 +15,19 @@ char * r1bindex(char *str, int chr) { - char *cp; + char *cp; - /* find null at the end of the string */ - for (cp = str; *cp; cp++) - continue; + /* find null at the end of the string */ + for (cp = str; *cp; cp++) + continue; - /* backup to the rightmost character */ - --cp; - - /* now search for the rightmost occurrence of the character */ - while (cp >= str && *cp != chr) + /* backup to the rightmost character */ --cp; - /* now move one to the right */ - return (++cp); + /* now search for the rightmost occurrence of the character */ + while (cp >= str && *cp != chr) + --cp; + + /* now move one to the right */ + return (++cp); }