| * linux/arch/xtensa/lib/strcasecmp.c |
| * This file is subject to the terms and conditions of the GNU General |
| * Public License. See the file "COPYING" in the main directory of |
| * this archive for more details. |
| * Copyright (C) 2002 Tensilica Inc. |
| #include <linux/string.h> |
| /* We handle nothing here except the C locale. Since this is used in |
| only one place, on strings known to contain only 7 bit ASCII, this |
| int strcasecmp(const char *a, const char *b) |
| if (ca >= 'A' && ca <= 'Z') |
| if (cb >= 'A' && cb <= 'Z') |
| } while (ca == cb && ca != '\0'); |