MCPcopy Create free account
hub / github.com/d35ha/CallObfuscator / str_cpy

Method str_cpy

src/shellcode.cpp:80–84  ·  view source on GitHub ↗

Copy string to a buffer.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected