aboutsummaryrefslogblamecommitdiffstats
path: root/strrchr_inv.c
blob: 2b57fdfda669d873db3177b1a08f679625794d6f (plain) (tree)

























                                                                  
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST


char *
libsimple_strrchr_inv(const char *s_, int c_) /* TODO test, man */
{
	char *s = *(char **)(void *)&s_, c = (char)c_, *r = NULL;
	for (; *s; s++)
		if (*s != c)
			r = s;
	return r;
}


#else
#include "test.h"

int
main(void)
{
	return 0;
}

#endif