| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 2.11

 

get_day_name

#include "sfllang.h"
char *
get_day_name (int day)

Synopsis

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.

Source Code - (sfllang.c)

{
    ASSERT (day >= 0 && day <= 6);
    return (handle_accents (day_table [day]));
}

| << | < | > | >> iMatix Copyright © 1996-2000 iMatix Corporation