| 264 | } |
| 265 | |
| 266 | bool AIPathAtStart(ai_path_info *aip) { |
| 267 | if (aip->cur_path == 0 && aip->cur_node == aip->path_start_node[0]) |
| 268 | return true; |
| 269 | else |
| 270 | return false; |
| 271 | } |
| 272 | |
| 273 | bool AIPathAtEnd(ai_path_info *aip) { |
| 274 | if (aip->cur_path == aip->num_paths - 1 && aip->cur_node == aip->path_end_node[aip->num_paths - 1]) |
no outgoing calls
no test coverage detected