From: Steve Hay Date: Mon, 11 Jul 2005 14:41:27 +0000 (+0000) Subject: [patch hv.h doc] HvNAME X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9282b5fd39e8a661d98cf18601205217ba4caf3d;p=p5sagit%2Fp5-mst-13.2.git [patch hv.h doc] HvNAME From: Stas Bekman Date: Fri, 08 Jul 2005 13:52:13 +0300 Message-ID: <42CE5ADD.3020003@stason.org> Subject: Re: [patch hv.h doc] HvNAME From: Nicholas Clark Date: Sat, 9 Jul 2005 15:23:51 +0100 Message-ID: <20050709142351.GT15833@plum.flirble.org> p4raw-id: //depot/perl@25111 --- diff --git a/hv.h b/hv.h index fc5bcde..956f949 100644 --- a/hv.h +++ b/hv.h @@ -156,7 +156,8 @@ Null HV pointer. =head1 Hash Manipulation Functions =for apidoc Am|char*|HvNAME|HV* stash -Returns the package name of a stash. See C, C. +Returns the package name of a stash, or NULL if C isn't a stash. +See C, C. =for apidoc Am|void*|HeKEY|HE* he Returns the actual pointer stored in the key slot of the hash entry. The diff --git a/pod/perlapi.pod b/pod/perlapi.pod index b3deaf6..eb5dca9 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -1078,7 +1078,8 @@ Found in file hv.h =item HvNAME -Returns the package name of a stash. See C, C. +Returns the package name of a stash, or NULL if C isn't a stash. +See C, C. char* HvNAME(HV* stash)