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

Function fxDatePrintDateUTC

xs/sources/xsDate.c:1409–1418  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1407}
1408
1409txString fxDatePrintDateUTC(txString p, txInteger year, txInteger month, txInteger date)
1410{
1411 p = fxDatePrint2Digits(p, date);
1412 *p++ = ' ';
1413 c_strcpy(p, gxMonthNames[month]);
1414 p += 3;
1415 *p++ = ' ';
1416 p = fxDatePrintYear(p, year);
1417 return p;
1418}
1419
1420txString fxDatePrintDay(txString p, txInteger day)
1421{

Callers 1

Calls 2

fxDatePrint2DigitsFunction · 0.85
fxDatePrintYearFunction · 0.85

Tested by

no test coverage detected