MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / memset

Function memset

cmake/Windows/Contrib/Inetc/crt.cpp:13–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11#endif
12
13extern "C" void* __cdecl memset(void *p, int c, size_t z)
14{
15#ifdef CRTINTRINSIC_memset
16 CRTINTRINSIC_memset(p, c, z);
17#else
18 BYTE *pb = reinterpret_cast<BYTE*>(p);
19 for(size_t i=0; i<z; ++i, ++pb)
20 (*pb) = c;
21#endif
22 return p;
23}
24
25extern "C" const char* __cdecl strstr(const char *str, const char *target)
26{

Callers 4

generateTrieDBMethod · 0.85
DepthHitsMethod · 0.85
identifyChargeMethod · 0.85
openFtpFileFunction · 0.85

Calls

no outgoing calls

Tested by 1

generateTrieDBMethod · 0.68