| 99 | } |
| 100 | |
| 101 | void StringMemmove( |
| 102 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 103 | { |
| 104 | ReturnValue->Val->Pointer = |
| 105 | memmove(Param[0]->Val->Pointer, Param[1]->Val->Pointer, Param[2]->Val->Integer); |
| 106 | } |
| 107 | |
| 108 | void StringMemchr( |
| 109 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected