| 3953 | |
| 3954 | ATTRIBUTE_PURE_114833 |
| 3955 | static bool |
| 3956 | itsabbr(register const char *abbr, register const char *word) |
| 3957 | { |
| 3958 | if (lowerit(*abbr) != lowerit(*word)) |
| 3959 | return false; |
| 3960 | ++word; |
| 3961 | while (*++abbr != '\0') |
| 3962 | do { |
| 3963 | if (*word == '\0') |
| 3964 | return false; |
| 3965 | } while (lowerit(*word++) != lowerit(*abbr)); |
| 3966 | return true; |
| 3967 | } |
| 3968 |