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

Function fxDatePrintDate

xs/sources/xsDate.c:1398–1407  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1396}
1397
1398txString fxDatePrintDate(txString p, txInteger year, txInteger month, txInteger date)
1399{
1400 c_strcpy(p, gxMonthNames[month]);
1401 p += 3;
1402 *p++ = ' ';
1403 p = fxDatePrint2Digits(p, date);
1404 *p++ = ' ';
1405 p = fxDatePrintYear(p, year);
1406 return p;
1407}
1408
1409txString fxDatePrintDateUTC(txString p, txInteger year, txInteger month, txInteger date)
1410{

Callers 3

fx_Date_auxFunction · 0.85

Calls 2

fxDatePrint2DigitsFunction · 0.85
fxDatePrintYearFunction · 0.85

Tested by

no test coverage detected