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

Function StringStrncmp

common/source/picoc/cstdlib/string.c:33–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33void StringStrncmp(
34 struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs)
35{
36 ReturnValue->Val->Integer =
37 strncmp(Param[0]->Val->Pointer, Param[1]->Val->Pointer, Param[2]->Val->Integer);
38}
39
40void StringStrncasecmp(
41 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