| 1396 | } |
| 1397 | |
| 1398 | txString 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 | |
| 1409 | txString fxDatePrintDateUTC(txString p, txInteger year, txInteger month, txInteger date) |
| 1410 | { |
no test coverage detected