MCPcopy Create free account
hub / github.com/boku7/Loki / StringLengthA

Function StringLengthA

dev/execute_assembly/node_assembly_execute.cpp:81–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79extern "C" SIZE_T Hasher1(INT sz, LPSTR str);
80
81INT StringLengthA(char* string22)
82{
83 int length = 0;
84 int stringmax = 2000;
85 while (length < stringmax) {
86 if (string22[length] == 0x00) {
87 break;
88 }
89 length++;
90 }
91 return length;
92}
93
94// Does not handle forwaders
95void xGetProcAddr(PVOID pe, SIZE_T api_hash, PHANDLE api_addr)

Callers 1

xGetProcAddrFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected