| 137 | } |
| 138 | |
| 139 | void StringStrspn( |
| 140 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 141 | { |
| 142 | ReturnValue->Val->Integer = strspn(Param[0]->Val->Pointer, Param[1]->Val->Pointer); |
| 143 | } |
| 144 | |
| 145 | void StringStrcspn( |
| 146 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected