| 97 | } |
| 98 | |
| 99 | void InvertCase(std::wstring& buf) { |
| 100 | for (auto& c : buf) { |
| 101 | if (std::iswupper(c)) { |
| 102 | c = std::towlower(c); |
| 103 | } |
| 104 | else { |
| 105 | c = std::towupper(c); |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | TStatus WorkerImplement::GetClipStringCallback() { |
| 111 | LOG_ANY(L"GetClipStringCallback"); |
no outgoing calls
no test coverage detected