| 38 | } |
| 39 | |
| 40 | void StringStrncasecmp( |
| 41 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 42 | { |
| 43 | ReturnValue->Val->Integer = |
| 44 | strncasecmp(Param[0]->Val->Pointer, Param[1]->Val->Pointer, Param[2]->Val->Integer); |
| 45 | } |
| 46 | |
| 47 | void StringStrcat( |
| 48 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected