1 /*************************************************************************/
2 /*                                                                       */
3 /*                           Cepstral, LLC                               */
4 /*                        Copyright (c) 2001                             */
5 /*                        All Rights Reserved.                           */
6 /*                                                                       */
7 /*  Permission is hereby granted, free of charge, to use and distribute  */
8 /*  this software and its documentation without restriction, including   */
9 /*  without limitation the rights to use, copy, modify, merge, publish,  */
10 /*  distribute, sublicense, and/or sell copies of this work, and to      */
11 /*  permit persons to whom this work is furnished to do so, subject to   */
12 /*  the following conditions:                                            */
13 /*   1. The code must retain the above copyright notice, this list of    */
14 /*      conditions and the following disclaimer.                         */
15 /*   2. Any modifications must be clearly marked as such.                */
16 /*   3. Original authors' names are not deleted.                         */
17 /*   4. The authors' names are not used to endorse or promote products   */
18 /*      derived from this software without specific prior written        */
19 /*      permission.                                                      */
20 /*                                                                       */
21 /*  CEPSTRAL, LLC AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ALL         */
22 /*  WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED       */
23 /*  WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL         */
24 /*  CEPSTRAL, LLC NOR THE CONTRIBUTORS BE LIABLE FOR ANY SPECIAL,        */
25 /*  INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER          */
26 /*  RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION    */
27 /*  OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR  */
28 /*  IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.          */
29 /*                                                                       */
30 /*************************************************************************/
31 /*             Author:  David Huggins-Daines (dhd@cepstral.com)          */
32 /*               Date:  December 2001                                    */
33 /*************************************************************************/
34 /*                                                                       */
35 /* flite_sapi_usenglish.h: US English specific functions for Flite/SAPI  */
36 /*                                                                       */
37 /*************************************************************************/
38 
39 #ifndef _FLITE_SAPI_USENGLISH_H
40 #define _FLITE_SAPI_USENGLISH_H
41 
42 #include <sapi.h>
43 
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47 
48 #include "cst_item.h"
49 int flite_sapi_usenglish_phoneme(cst_item *s);
50 int flite_sapi_usenglish_viseme(cst_item *s);
51 int flite_sapi_usenglish_feature(cst_item *s);
52 cst_val *flite_sapi_usenglish_pronounce(SPPHONEID *pids);
53 
54 #ifdef __cplusplus
55 };
56 #endif /* __cplusplus */
57 
58 #endif /* _FLITE_SAPI_USENGLISH_H */
59