MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxDatePrintTime

Function fxDatePrintTime

xs/sources/xsDate.c:1427–1435  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1425}
1426
1427txString fxDatePrintTime(txString p, txInteger hours, txInteger minutes, txInteger seconds)
1428{
1429 p = fxDatePrint2Digits(p, hours);
1430 *p++ = ':';
1431 p = fxDatePrint2Digits(p, minutes);
1432 *p++ = ':';
1433 p = fxDatePrint2Digits(p, seconds);
1434 return p;
1435}
1436
1437txString fxDatePrintTimezone(txString p, txInteger offset)
1438{

Callers 5

fx_Date_auxFunction · 0.85

Calls 1

fxDatePrint2DigitsFunction · 0.85

Tested by

no test coverage detected