($exe)
| 78 | } |
| 79 | |
| 80 | function resolve_installed_program($exe) |
| 81 | { |
| 82 | if(defined("PHP_WINDOWS_VERSION_MAJOR")) |
| 83 | { |
| 84 | return escapeshellarg(system("where ".escapeshellarg($exe))); |
| 85 | } |
| 86 | return escapeshellarg(system("command -v ".escapeshellarg($exe))); |
| 87 | } |
| 88 | |
| 89 | function for_each_obj($f) |
| 90 | { |
no outgoing calls
no test coverage detected