| 51 | } |
| 52 | |
| 53 | void StringStrncat( |
| 54 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 55 | { |
| 56 | ReturnValue->Val->Pointer = |
| 57 | strncat(Param[0]->Val->Pointer, Param[1]->Val->Pointer, Param[2]->Val->Integer); |
| 58 | } |
| 59 | |
| 60 | #ifndef WIN32 |
| 61 | void StringIndex( |
nothing calls this directly
no outgoing calls
no test coverage detected