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

Function fxDatePrint2Digits

xs/sources/xsDate.c:1379–1384  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1377}
1378
1379txString fxDatePrint2Digits(txString p, txInteger value)
1380{
1381 *p++ = '0' + value / 10;
1382 *p++ = '0' + value % 10;
1383 return p;
1384}
1385
1386txString fxDatePrint3Digits(txString p, txInteger value)
1387{

Callers 6

fxDatePrint3DigitsFunction · 0.85
fxDatePrintDateFunction · 0.85
fxDatePrintDateUTCFunction · 0.85
fxDatePrintTimeFunction · 0.85
fxDatePrintTimezoneFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected