| 131 | } |
| 132 | |
| 133 | void StringStrerror( |
| 134 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 135 | { |
| 136 | ReturnValue->Val->Pointer = strerror(Param[0]->Val->Integer); |
| 137 | } |
| 138 | |
| 139 | void StringStrspn( |
| 140 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no test coverage detected