|
| iMatix home page | << | < | > | >> |
SFLVersion 2.11 |
#include "sfllang.h" char * get_tens_name (int tens)
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.
{
ASSERT (tens >= 10 && tens < 100);
return (handle_accents (tens_table [tens / 10 - 1]));
}
| | << | < | > | >> |
|