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

Function fxDatePrint4Digits

xs/sources/xsDate.c:1392–1396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1390}
1391
1392txString fxDatePrint4Digits(txString p, txInteger value)
1393{
1394 *p++ = '0' + value / 1000;
1395 return fxDatePrint3Digits(p, value % 1000);
1396}
1397
1398txString fxDatePrintDate(txString p, txInteger year, txInteger month, txInteger date)
1399{

Callers 1

fxDatePrintYearFunction · 0.85

Calls 1

fxDatePrint3DigitsFunction · 0.85

Tested by

no test coverage detected