next up previous contents
Next: EXAMPLE USAGE OF THE Up: OPEN C PLATFORM Previous: License Module (LIC_)   Contents

Subsections

Integer To English (int2english)

#include "int2english.h"

Char *
PF_intToCardinalEnglish(strBegin, strEnd, value)
Char *strBegin;   /* output */
Char *strEnd;     /* output */
LgInt value;      /* input */

Char *
PF_intToOrdinalEnglish(strBegin, strEnd, value)
Char *strBegin;    /* output */
Char *strEnd;      /* output */
LgInt value;       /* input */

Char *
PF_intToDigitEnglish(strBegin, strEnd, value)
Char *strBegin;     /* output */
Char *strEnd;       /* output */
LgInt value;        /* input */

char *
PF_strToDigitEnglish(char *strBegin, char *strEnd, String digitStr)

This module provides a program to convert integer into a readable ASCII string in English.

PF_intToCardinalEnglish

The PF_intToCardinalEnglish function convert any integer into cardinal English. It takes integer value as an input and produces a string of phonemes. Below are several examples of what will be produced by PF_intToCardinalEnglish function:

PF_intToOrdinalEnglish

The PF_intToOrdinalEnglish function convert any integer into ordinal English. It takes integer value as an input and produces a string of phonemes. Below are several examples of what will be produced by PF_intToOrdinalEnglish function:

PF_intToDigitEnglish

The PF_intToDigitEnglish function convert any integer into ordinal English. It takes integer value as an input and produces a string of phonemes. Below are several examples of what will be produced by PF_intToDigitEnglish function:

PF_strToDigitEnglish

The PF_intToDigitEnglish function convert any integer into ordinal English. It takes string value as an input and produces a string of phonemes. Below are several examples of what will be produced by PF_strToDigitEnglish function:


next up previous contents
Next: EXAMPLE USAGE OF THE Up: OPEN C PLATFORM Previous: License Module (LIC_)   Contents