| 1407 | } |
| 1408 | |
| 1409 | txString 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 | |
| 1420 | txString fxDatePrintDay(txString p, txInteger day) |
| 1421 | { |
no test coverage detected