| 149 | } |
| 150 | |
| 151 | void StringStrpbrk( |
| 152 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 153 | { |
| 154 | ReturnValue->Val->Pointer = strpbrk(Param[0]->Val->Pointer, Param[1]->Val->Pointer); |
| 155 | } |
| 156 | |
| 157 | void StringStrstr( |
| 158 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected