Copy string to a buffer.
| 78 | |
| 79 | // Copy string to a buffer. |
| 80 | VOID shellcode::str_cpy(PCHAR out, PSTR in) |
| 81 | { |
| 82 | while (*in) *out++ = *in++; |
| 83 | *out = 0; |
| 84 | }; |
| 85 | |
| 86 | // Convert a string into integer. |
| 87 | DWORD shellcode::str_toi(PSTR str) |
nothing calls this directly
no outgoing calls
no test coverage detected