MCPcopy Create free account
hub / github.com/GJDuck/e9patch / e9strcmp

Function e9strcmp

src/e9patch/e9loader_pe.cpp:312–317  ·  view source on GitHub ↗

* strcmp() */

Source from the content-addressed store, hash-verified

310 * strcmp()
311 */
312static int e9strcmp(const char *s1, const char *s2)
313{
314 for (; *s1 == *s2 && *s1 != '\0'; s1++, s2++)
315 ;
316 return (int)*s2 - (int)*s1;
317}
318
319/*
320 * Find a function from a DLL (a.k.a. GetProcAddress).

Callers 1

e9getFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected