File: fdsetconv.h

package info (click to toggle)
speech-dispatcher 0.8.6-4%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,724 kB
  • ctags: 2,247
  • sloc: ansic: 20,729; sh: 4,559; python: 581; lisp: 579; makefile: 376
file content (26 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (3)
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