|
| iMatix home page | << | < | > | >> |
SFLVersion 2.10 |
#include "sfldate.h" int year_quarter (long date)
Returns the year quarter, 1 to 4, depending on the month specified.
{
return ((GET_MONTH (date) - 1) / 3 + 1);
}
| | << | < | > | >> |
|