|
| iMatix home page | << | < | > | >> |
SFLVersion 2.11 |
#include "sfllang.h" char * get_day_name (int day)
Returns the name for the specified day, which must be a value from 0 (Sunday) to 6 (Saturday). Accented characters are formatted according to the current accents setting.
{
ASSERT (day >= 0 && day <= 6);
return (handle_accents (day_table [day]));
}
| | << | < | > | >> |
|