At 20:32 4/5/2001, Johan Ekenberg wrote:
>Zeev,
>
>thanks, that made all the difference!
>
>I got a suggestion from another PHP-developer that mixing calls to
>emalloc() and strcpy() might be a problem. Is this so?

Not it's not;  A block you get from emalloc() is very much the same as a 
block you get from malloc(), as far as what you can do with it.  The only 
difference is that you have to use efree()/erealloc() etc. instead of 
free()/realloc(), when you manipulate that block.

Zeev


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to