version of eos() which takes a const* arg and returns that result */
| 200 | |
| 201 | /* version of eos() which takes a const* arg and returns that result */ |
| 202 | const char * |
| 203 | c_eos(const char *s) |
| 204 | { |
| 205 | while (*s) |
| 206 | s++; /* s += strlen(s); */ |
| 207 | return s; |
| 208 | } |
| 209 | |
| 210 | /* determine whether 'str' starts with 'chkstr', possibly ignoring case; |
| 211 | * panics on huge strings */ |
no outgoing calls
no test coverage detected