| 155 | } |
| 156 | |
| 157 | void StringStrstr( |
| 158 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 159 | { |
| 160 | ReturnValue->Val->Pointer = strstr(Param[0]->Val->Pointer, Param[1]->Val->Pointer); |
| 161 | } |
| 162 | |
| 163 | void StringStrtok( |
| 164 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected