Date: Thu, 26 Dec 1996 08:46:33 +0200 (IST) From: Eli Zaretskii To: Thomas Harte cc: djgpp AT delorie DOT com Subject: Re: VARIABLE COPYING In-Reply-To: <01bbf2bb$a43d2f60$962749c2@default> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 25 Dec 1996, Thomas Harte wrote: > What would be the fastest way of copying the contents of one unsigned int > (malloc'd at 64000) to another identical unsigned int? memcpy (destination_buf, source_buf, 64000);