On 2/3/06, Phil Goss <[EMAIL PROTECTED]> wrote:
> This is what seems to have worked for me
>
> if(!name || !strlen(name)) {
>
>

The shortest way to do this is:

if (!name || !*name) {

--
James Hawkins


Reply via email to