cst_utterance *flite_synth_phones(const char *text, cst_voice *voice) { cst_utterance *u; u = new_utterance(); utt_set_input_text(u,text); return flite_synth_foo(u, voice, utt_synth_phones); }
cst_utterance *flite_synth_text(const char *text, cst_voice *voice) { cst_utterance *u; u = new_utterance(); utt_set_input_text(u,text); return flite_do_synth(u, voice, utt_synth); }