[PHP-DEV] CVS Account Request: blindman

2004-06-12 Thread Andrey Demenev
I have been translated documentation into Russian for some time. Antony Dovgal (tony2001) advised me to request a CVS account. I need commit karma for phpdoc-ru -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] str_repeat() patch

2004-06-12 Thread George Schlossnagle
On Jun 12, 2004, at 10:27 AM, Alexander Valyalkin wrote: On Fri, 11 Jun 2004 17:00:03 +0200 (CEST), Derick Rethans <[EMAIL PROTECTED]> wrote: On Fri, 11 Jun 2004, Alexander Valyalkin wrote: Read it: void *memmove(void *s1, const void *s2, size_t n); If s1 and s2 overlap, all bytes are copied in a

Re: [PHP-DEV] str_repeat() patch

2004-06-12 Thread Alexander Valyalkin
On Fri, 11 Jun 2004 10:55:20 -0400, Ilia Alshanetsky <[EMAIL PROTECTED]> wrote: Read your memcpy manpages "The memcpy() function copies n bytes from memory area src to memory area dest. The memory areas may not overlap." Well, I've read my manpages: The memcpy() function copies n bytes

[PHP-DEV] crc32() improvements

2004-06-12 Thread Alexander Valyalkin
Here is improved version of crc32() function. Features: 1) Automatic initialization of crc32tab[] at first call. So, the file crc32.h with definition of this tab is not nessesary any more now. 2) Speed is improved on large amount of data. 3) Less source size. Current verison has near 6.5Kb le

Re: [PHP-DEV] str_repeat() patch

2004-06-12 Thread Alexander Valyalkin
On Fri, 11 Jun 2004 17:00:03 +0200 (CEST), Derick Rethans <[EMAIL PROTECTED]> wrote: On Fri, 11 Jun 2004, Alexander Valyalkin wrote: Read it: void *memmove(void *s1, const void *s2, size_t n); If s1 and s2 overlap, all bytes are copied in a preserving manner (unlike memcpy()) And anwer the qu