Lines Matching defs:lowerCase
185 char lowerCase[10], c;
200 lowerCase[i] = c;
202 lowerCase[i] = 0;
204 length = strlen(lowerCase);
205 c = lowerCase[0];
206 if ((c == '0') && (lowerCase[1] == '\0')) {
208 } else if ((c == '1') && (lowerCase[1] == '\0')) {
210 } else if ((c == 'y') && (strncmp(lowerCase, "yes", length) == 0)) {
212 } else if ((c == 'n') && (strncmp(lowerCase, "no", length) == 0)) {
214 } else if ((c == 't') && (strncmp(lowerCase, "true", length) == 0)) {
216 } else if ((c == 'f') && (strncmp(lowerCase, "false", length) == 0)) {
219 if (strncmp(lowerCase, "on", length) == 0) {
221 } else if (strncmp(lowerCase, "off", length) == 0) {