find the '=' or ':' */
| 585 | |
| 586 | /* find the '=' or ':' */ |
| 587 | staticfn char * |
| 588 | find_optparam(char *buf) |
| 589 | { |
| 590 | char *bufp, *altp; |
| 591 | |
| 592 | bufp = strchr(buf, '='); |
| 593 | altp = strchr(buf, ':'); |
| 594 | if (!bufp || (altp && altp < bufp)) |
| 595 | bufp = altp; |
| 596 | |
| 597 | return bufp; |
| 598 | } |
| 599 | |
| 600 | #ifndef SFCTOOL |
| 601 |
no outgoing calls
no test coverage detected