| 12 | } |
| 13 | |
| 14 | void StringStrncpy( |
| 15 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 16 | { |
| 17 | ReturnValue->Val->Pointer = |
| 18 | strncpy(Param[0]->Val->Pointer, Param[1]->Val->Pointer, Param[2]->Val->Integer); |
| 19 | } |
| 20 | |
| 21 | void StringStrcmp( |
| 22 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected