Lines Matching full:zarg
2259 ** Interpret zArg as a boolean value. Return either 0 or 1.2261 static int booleanValue(char *zArg){2262 int val = atoi(zArg);2264 for(j=0; zArg[j]; j++){2265 zArg[j] = (char)tolower(zArg[j]);2267 if( strcmp(zArg,"on")==0 ){2269 }else if( strcmp(zArg,"yes")==0 ){