#include <ncbi.h>
#include <gishlib.h>
/*
	str_mov(dst, src)

	Copy source string src to destination area dst, and return pointer
	to the new NULL terminator of dst.
*/

CharPtr _cdecl
str_mov(dst, src)
	register CharPtr dst, src;
{
	register char	c;

	while ((c = *src++) != NULLB)
		*dst++ = c;
	*dst = c;
	return dst;
}
