Subversion Repositories planix.SVN

Rev

Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include <u.h>
#include <libc.h>

char*
strrchr(char *s, int c)
{
        char *r;

        if(c == 0)
                return strchr(s, 0);
        r = 0;
        while(s = strchr(s, c))
                r = s++;
        return r;
}