(c)
| 93 | |
| 94 | #ifndef STRNCMPI |
| 95 | char lowc(c) /* force 'c' into lowercase */ |
| 96 | char c; |
| 97 | { |
| 98 | return ((char) (('A' <= c && c <= 'Z') ? (c | 040) : c)); |
| 99 | } |
| 100 | |
| 101 | int strncmpi(s1, s2, n) /* case insensitive counted string comparison */ |
| 102 | register const char *s1, *s2; |
no outgoing calls
no test coverage detected