From: Jarkko Hietaniemi Date: Wed, 2 Aug 2000 03:02:57 +0000 (+0000) Subject: memcpy has n o in it, as pinted ut by Sarathy. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ef7adf26b48d8441a94b9133216b2ca93f1f3137;p=p5sagit%2Fp5-mst-13.2.git memcpy has n o in it, as pinted ut by Sarathy. p4raw-id: //depot/perl@6488 --- diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 8f4839a..8c440c8 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -1320,16 +1320,17 @@ function). Here is a handy table of equivalents between ordinary C and Perl's memory abstraction layer: - Instead Of: Use: - malloc New - calloc Newz - realloc Renew - memcopy Copy - memmove Move - free Safefree - strdup savepv - strndup savepvn (Hey, strndup doesn't exist!) - memcopy/*(struct foo *) StructCopy + Instead Of: Use: + + malloc New + calloc Newz + realloc Renew + memcopy Copy + memmove Move + free Safefree + strdup savepv + strndup savepvn (Hey, strndup doesn't exist!) + memcpy/*(struct foo *) StructCopy =head2 PerlIO