j
k
j a
j l
On 2/3/06, Phil Goss pagoss@gmail.com wrote:
This is what seems to have worked for me if(!name || !strlen(name)) {
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
Back to the thread
Back to the list