| 382 | **************************************************************************/ |
| 383 | |
| 384 | condition* explain_find_cond(condition* target, condition* cond_list) |
| 385 | { |
| 386 | |
| 387 | condition* cond, *match; |
| 388 | |
| 389 | match = NULL; |
| 390 | for (cond = cond_list; cond != NULL; cond = cond->next) |
| 391 | { |
| 392 | if (conditions_are_equal(target, cond)) |
| 393 | { |
| 394 | match = cond; |
| 395 | } |
| 396 | } |
| 397 | return (match); |
| 398 | } |
| 399 | |
| 400 | /*************************************************************************** |
| 401 | * Function : explain_trace |
no test coverage detected