| 72 | #endif |
| 73 | |
| 74 | void StringStrlen( |
| 75 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 76 | { |
| 77 | ReturnValue->Val->Integer = strlen(Param[0]->Val->Pointer); |
| 78 | } |
| 79 | |
| 80 | void StringMemset( |
| 81 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected