diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-02 03:02:57 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-02 03:02:57 +0000 |
commit | ef7adf26b48d8441a94b9133216b2ca93f1f3137 (patch) | |
tree | 0b37d7d1eb79861bddc75685ffebfa6fbdc156ad /pod/perlguts.pod | |
parent | 0cf5025feb32fb02ae5300679222908dde622ca9 (diff) | |
download | perl-ef7adf26b48d8441a94b9133216b2ca93f1f3137.tar.gz |
memcpy has n o in it, as pinted ut by Sarathy.
p4raw-id: //depot/perl@6488
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 8f4839aa20..8c440c89d3 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 |