1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#ifndef FDSETCONV_H
#define FDSETCONV_H
#include <stdio.h>
#include <string.h>
#include <speechd_types.h>
char *EVoice2str(SPDVoiceType voice);
SPDVoiceType str2EVoice(char *str);
char *EPunctMode2str(SPDPunctuation punct);
SPDPunctuation str2EPunctMode(char *str);
char *ESpellMode2str(SPDSpelling spell);
SPDSpelling str2ESpellMode(char *str);
char *ECapLetRecogn2str(SPDCapitalLetters recogn);
SPDCapitalLetters str2ECapLetRecogn(char *str);
SPDPriority str2intpriority(char *str);
#endif
|