| 226 | } |
| 227 | |
| 228 | char** kwsysSystem_Parse_CommandForUnix(char const* command, int flags) |
| 229 | { |
| 230 | /* Validate the flags. */ |
| 231 | if (flags != 0) { |
| 232 | return 0; |
| 233 | } |
| 234 | |
| 235 | /* Forward to our internal implementation. */ |
| 236 | return kwsysSystem__ParseUnixCommand(command, flags); |
| 237 | } |
no test coverage detected
searching dependent graphs…