| 181 | } |
| 182 | |
| 183 | void StringStrtok_r( |
| 184 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 185 | { |
| 186 | ReturnValue->Val->Pointer = |
| 187 | (void*)strtok_r(Param[0]->Val->Pointer, Param[1]->Val->Pointer, Param[2]->Val->Pointer); |
| 188 | } |
| 189 | #endif |
| 190 | |
| 191 | /* all string.h functions */ |
nothing calls this directly
no outgoing calls
no test coverage detected