misprint in perlguts
Vadim Konovalov [Sun, 26 Sep 1999 12:48:36 +0000 (16:48 +0400)]
From: "Konovalov, Vadim" <vkonovalov@lucent.com>
To: perl5-porters@perl.org
Message-ID: <402099F49BEED211999700805FC7359F20D7A5@ru0028exch01.spb.lucent.com>

p4raw-id: //depot/cfgperl@4231

pod/perlguts.pod

index af12297..a535048 100644 (file)
@@ -2907,15 +2907,17 @@ Test two strings to see if they are different.  Returns true or false.
 
 Test two strings to see if they are equal.  The C<len> parameter indicates
 the number of bytes to compare.  Returns true or false.
+(A wrapper for C<strncmp>).
 
-       int     strnEQ( char *s1, char *s2 )
+       int     strnEQ( const char *s1, const char *s2, size_t len )
 
 =item strnNE
 
 Test two strings to see if they are different.  The C<len> parameter
 indicates the number of bytes to compare.  Returns true or false.
+(A wrapper for C<strncmp>).
 
-       int     strnNE( char *s1, char *s2, int len )
+       int     strnNE( const char *s1, const char *s2, size_t len )
 
 =item sv_2mortal