| 196 | } |
| 197 | |
| 198 | static const char * my_index (const char *str, int chr) |
| 199 | { |
| 200 | while (*str) |
| 201 | { |
| 202 | if (*str == chr) |
| 203 | return (const char *) str; |
| 204 | str++; |
| 205 | } |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | #endif /* GNU C library. */ |
| 210 |
no outgoing calls
no test coverage detected