| 161 | } |
| 162 | |
| 163 | void StringStrtok( |
| 164 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 165 | { |
| 166 | ReturnValue->Val->Pointer = strtok(Param[0]->Val->Pointer, Param[1]->Val->Pointer); |
| 167 | } |
| 168 | |
| 169 | void StringStrxfrm( |
| 170 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected