Date: Fri, 22 Nov 1996 13:19:49 +0200 (IST) From: Eli Zaretskii To: Just a Fantasy? Cc: djgpp AT delorie DOT com Subject: Re: Want to copy one buffer to another... Help! In-Reply-To: <32950E2C.25F0@mdc.net> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thu, 21 Nov 1996, Just a Fantasy? wrote: > All I want to do is copy one buffer in memory to another as fast as > possible. I've been trying with "dosmemput" but it requires the 3rd Use `memcpy' if the buffers are known to not overlap, or `memmove' if they could overlap (`memcpy' is faster). Both these functions are documented in the C library reference which comes with DJGPP.