| 31 | } |
| 32 | |
| 33 | void 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 | |
| 40 | void StringStrncasecmp( |
| 41 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected