return the end of a string (pointing at '\0') */
| 191 | |
| 192 | /* return the end of a string (pointing at '\0') */ |
| 193 | char * |
| 194 | eos(char *s) |
| 195 | { |
| 196 | while (*s) |
| 197 | s++; /* s += strlen(s); */ |
| 198 | return s; |
| 199 | } |
| 200 | |
| 201 | /* version of eos() which takes a const* arg and returns that result */ |
| 202 | const char * |
no outgoing calls
no test coverage detected