aboutsummaryrefslogblamecommitdiffstats
path: root/strcasechrnul_inv.c
blob: b2cbf5618a37c15552295942c6c1a7f9cbef47c6 (plain) (tree)































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


char *
libsimple_strcasechrnul_inv(const char *s_, int c) /* TODO man */
{
	char *s = *(char **)(void *)&s_, lc = (char)tolower(c), uc = (char)toupper(c);
	if (lc != uc)
		for (; *s && (*s == lc || *s == uc); s++);
	else
		for (; *s && *s == lc; s++);
	return s;
}


#else
#include "test.h"

int
main(void)
{
	assert(!strcmpnul(libsimple_strcasechrnul_inv("xxoxx", 'x'), "oxx"));
	assert(!strcmpnul(libsimple_strcasechrnul_inv("xxXxx", 'x'), ""));
	assert(!strcmpnul(libsimple_strcasechrnul_inv("XXoxx", 'x'), "oxx"));
	assert(!strcmpnul(libsimple_strcasechrnul_inv("zzzzz", 'z'), ""));
	assert(!strcmpnul(libsimple_strcasechrnul_inv("", '\0'), ""));
	return 0;
}

#endif