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

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

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