From: Vadim Konovalov Date: Sun, 26 Sep 1999 12:48:36 +0000 (+0400) Subject: misprint in perlguts X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1c65c084643b044d345d5f0dcf04fad352199ac7;p=p5sagit%2Fp5-mst-13.2.git misprint in perlguts From: "Konovalov, Vadim" To: perl5-porters@perl.org Message-ID: <402099F49BEED211999700805FC7359F20D7A5@ru0028exch01.spb.lucent.com> p4raw-id: //depot/cfgperl@4231 --- diff --git a/pod/perlguts.pod b/pod/perlguts.pod index af12297..a535048 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -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 parameter indicates the number of bytes to compare. Returns true or false. +(A wrapper for C). - 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 parameter indicates the number of bytes to compare. Returns true or false. +(A wrapper for C). - int strnNE( char *s1, char *s2, int len ) + int strnNE( const char *s1, const char *s2, size_t len ) =item sv_2mortal