| 1999 | // This just determines the correct hour and minute and calls the above. |
| 2000 | |
| 2001 | char *SzTim(real tim) |
| 2002 | { |
| 2003 | tim = RAbs(tim) + rSmall; |
| 2004 | return SzTimeR(NFloor(tim), (int)(RFract(tim)*60.0), |
| 2005 | us.fSeconds ? (int)(RFract(tim)*3600.0) % 60 : -1, |
| 2006 | f1K ? (int)(RFract(tim)*3600000.0) % 1000 : -1); |
| 2007 | } |
| 2008 | |
| 2009 | |
| 2010 | // Return a string containing the given time zone, given as a real value |
no test coverage detected