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

void LIBCALL
str_tolower(s)
	CharPtr s;
{
	register BytePtr us = (BytePtr)s;

	while ((*us = TOLOWER(*us)) != NULLB)
		++us;
}
