diff options
author | Vadim Konovalov <vkonovalov@lucent.com> | 1999-09-26 16:48:36 +0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-26 09:48:49 +0000 |
commit | 1c65c084643b044d345d5f0dcf04fad352199ac7 (patch) | |
tree | 19e6e226e852a0132b70a5f2c707d2b7a5e7b833 /pod | |
parent | 004afb30ca5f4beb99914f45551320f171c46072 (diff) | |
download | perl-1c65c084643b044d345d5f0dcf04fad352199ac7.tar.gz |
misprint in perlguts
From: "Konovalov, Vadim" <vkonovalov@lucent.com>
To: perl5-porters@perl.org
Message-ID: <402099F49BEED211999700805FC7359F20D7A5@ru0028exch01.spb.lucent.com>
p4raw-id: //depot/cfgperl@4231
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlguts.pod | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index af12297ec3..a5350486ce 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<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 |