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

 

get_tens_name

#include "sfllang.h"
char *
get_tens_name (int tens)

Synopsis

Returns the name for the specified tens, which is a value from 10 to 90; it is rounded as required. Accented characters are formatted according to the current accents setting.

Source Code - (sfllang.c)

{
    ASSERT (tens >= 10 && tens < 100);
    return (handle_accents (tens_table [tens / 10 - 1]));
}

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