/*****************************************************************************

	StCopy()

	This function is the same as the standard library function strcpy,
except that it does not return the address of the destination string.
This function is stolen from page 101 of "The C Programming Language"
by Kernighan and Ritchie.

*****************************************************************************/

#include "ZPort.h"		/* define portability identifiers */


VOID StCopy(dest,source)	/* string copy */
char *dest;
char *source;
{
	while (*dest++ = *source++)
		;
}
