| 1498 | const char* GetArgv0() { return argv0; } |
| 1499 | uint32 GetArgvSum() { return argv_sum; } |
| 1500 | const char* ProgramInvocationName() { // like the GNU libc fn |
| 1501 | return GetArgv0(); |
| 1502 | } |
| 1503 | const char* ProgramInvocationShortName() { // like the GNU libc fn |
| 1504 | const char* slash = strrchr(argv0, '/'); |
| 1505 | #ifdef OS_WINDOWS |
no test coverage detected