Am Samstag, den 04.02.2006, 00:59 +0100 schrieb Phil Goss:
This is what seems to have worked for me
if(!name || !strlen(name)) {
strlen() is overkill here, because you do not need the real length of the string.
So "!name[0]" (or "!*name") instead of "!strlen(name)" is more efficient, when you want to check for an empty name.