| 784 | } |
| 785 | |
| 786 | void killCurrentProcess() |
| 787 | { |
| 788 | #if !defined(_WIN32) |
| 789 | ::kill(::getpid(), SIGKILL); |
| 790 | #else |
| 791 | ::TerminateProcess(::GetCurrentProcess(), SIGTERM); |
| 792 | #endif |
| 793 | } |
| 794 | |
| 795 | std::string urlEncode(std::string_view s) |
| 796 | { |
no outgoing calls
no test coverage detected