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

 

get_month_name

#include "sfllang.h"
char *
get_month_name (int month)

Synopsis

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.

Source Code - (sfllang.c)

{
    ASSERT (month >= 1 && month <= 12);
    return (handle_accents (month_table [month - 1]));
}

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