| 26950 | |
| 26951 | void juce_runSystemCommand (const String&); |
| 26952 | void juce_runSystemCommand (const String& command) |
| 26953 | { |
| 26954 | int result = system (command.toUTF8()); |
| 26955 | (void) result; |
| 26956 | } |
| 26957 | |
| 26958 | String juce_getOutputFromCommand (const String&); |
| 26959 | String juce_getOutputFromCommand (const String& command) |
no test coverage detected