| 56 | } |
| 57 | |
| 58 | void xs_time_delta(xsMachine *the) |
| 59 | { |
| 60 | uint32_t start, end; |
| 61 | |
| 62 | start = xsmcToUnsigned(xsArg(0)); |
| 63 | if (xsmcArgc > 1) |
| 64 | end = xsmcToUnsigned(xsArg(1)); |
| 65 | else |
| 66 | end = modMilliseconds(); |
| 67 | xsmcSetInteger(xsResult, end - start); |
| 68 | } |
nothing calls this directly
no test coverage detected