Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.2 9/18/84; site brl-tgr.ARPA
Path: utzoo!watmath!clyde!burl!ulysses!allegra!bellcore!decvax!genrad!teddy!panda!talcott!harvard!seismo!brl-tgr!ron
From: ron@brl-tgr.ARPA (Ron Natalie )
Newsgroups: net.wanted.sources
Subject: Re: bcopy,bzero. Do you know what it is?
Message-ID: <7499@brl-tgr.ARPA>
Date: Thu, 17-Jan-85 20:35:42 EST
Article-I.D.: brl-tgr.7499
Posted: Thu Jan 17 20:35:42 1985
Date-Received: Mon, 21-Jan-85 01:47:37 EST
References: <15200007@bradley.UUCP>
Organization: Ballistic Research Lab
Lines: 11


> But I can't figure out what is bcopy.  It looks like a strncpy.

It is except that it doesn't stop on null.

	bcopy(from, to, count)
		char	*from, *to;
		int	count;
	{
		while(count--) *to++ = *from++;
	}