* string form of a given Epoch time, without milliseconds, * as in format [YYYY-MM-DD hh:mm:ss +hhmm] ex: [1997-07-16 19:20:30 +0100]. */
| 384 | * as in format [YYYY-MM-DD hh:mm:ss +hhmm] ex: [1997-07-16 19:20:30 +0100]. |
| 385 | */ |
| 386 | String __hxcpp_to_utc_string(double inSeconds) |
| 387 | { |
| 388 | struct tm time; |
| 389 | __internal_gmtime( inSeconds, &time); |
| 390 | return __internal_to_string( time); |
| 391 | } |
| 392 | |
| 393 | /* |
| 394 | * string form of a given Epoch time, without milliseconds and timezone offset, |
nothing calls this directly
no test coverage detected