Copy string between to buffers.
| 130 | |
| 131 | // Copy string between to buffers. |
| 132 | VOID shellcode::wstr_cpy(PWSTR str1, PCWSTR str2, size_t length) |
| 133 | { |
| 134 | // Char by char. |
| 135 | while (length--) *str1++ = *str2++; |
| 136 | *str1 = 0; |
| 137 | }; |
| 138 | |
| 139 | |
| 140 | // Compare two wide strings. |
nothing calls this directly
no outgoing calls
no test coverage detected