#include <ncbi.h>
#include <gishlib.h>

Nlm_CharPtr LIBCALL
str_chr(s, c)
	register Nlm_CharPtr	s;
	register int	c;
{
	while (*s != c)
		if (*s++ == NULLB)
			return NULL;
	return s;
}
