|
| iMatix home page | << | < | > | >> |
SFLVersion 2.11 |
#include "sfllang.h" char * get_month_name (int month)
Returns the name for the specified month, which must be a value from 1 to 12. Accented characters are handled as per the current accents setting.
{
ASSERT (month >= 1 && month <= 12);
return (handle_accents (month_table [month - 1]));
}
| | << | < | > | >> |
|