| 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]) |
| 275 | return true; |
| 276 | else |
| 277 | return false; |
| 278 | } |
| 279 | |
| 280 | static void AIPathSetAtEnd(ai_path_info *aip) { |
| 281 | aip->cur_path = aip->num_paths - 1; |
no outgoing calls
no test coverage detected