Add the perl equivalent for av_make.
Shlomi Fish [Mon, 24 May 2010 20:40:48 +0000 (23:40 +0300)]
Signed-off-by: David Golden <dagolden@cpan.org>

av.c

diff --git a/av.c b/av.c
index de57aac..219870c 100644 (file)
--- a/av.c
+++ b/av.c
@@ -379,6 +379,8 @@ Creates a new AV and populates it with a list of SVs.  The SVs are copied
 into the array, so they may be freed after the call to av_make.  The new AV
 will have a reference count of 1.
 
+Perl equivalent: C<my @new_array = ($scalar1, $scalar2, $scalar3...);>
+
 =cut
 */