| 1050 | if (ci->toolsCpp) free(ci->toolsCpp); |
| 1051 | if (ci->toolH) free(ci->toolH); |
| 1052 | if (ci->toolExe) free(ci->toolExe); |
| 1053 | if (ci->toolsDepFile) free(ci->toolsDepFile); |
| 1054 | if (ci->toolDepFile) free(ci->toolDepFile); |
| 1055 | } |
| 1056 | |
| 1057 | // getArgv functions |
| 1058 | char** getArgv(int* out_argc, char** argv, int real_argc) { |
| 1059 | #ifdef _WIN32 |
| 1060 | // Set console output to UTF-8 to properly display Unicode |
| 1061 | SetConsoleOutputCP(CP_UTF8); |
| 1062 | SetConsoleCP(CP_UTF8); |
| 1063 | |
| 1064 | LPWSTR* wargv = CommandLineToArgvW(GetCommandLineW(), out_argc); |
nothing calls this directly
no test coverage detected