MCPcopy Create free account
hub / github.com/FlagBrew/PKSM / StringMemmove

Function StringMemmove

common/source/picoc/cstdlib/string.c:101–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101void StringMemmove(
102 struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs)
103{
104 ReturnValue->Val->Pointer =
105 memmove(Param[0]->Val->Pointer, Param[1]->Val->Pointer, Param[2]->Val->Integer);
106}
107
108void StringMemchr(
109 struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected