-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathtt_text.h
31 lines (14 loc) · 792 Bytes
/
tt_text.h
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
27
28
29
30
31
/* tt_text.h */
/* Encode normal human readable to DTMF representation. */
int tt_text_to_multipress (char *text, int quiet, char *buttons);
int tt_text_to_two_key (char *text, int quiet, char *buttons);
int tt_text_to_call10 (char *text, int quiet, char *buttons) ;
int tt_text_to_mhead (char *text, int quiet, char *buttons) ;
int tt_text_to_satsq (char *text, int quiet, char *buttons) ;
/* Decode DTMF to normal human readable form. */
int tt_multipress_to_text (char *buttons, int quiet, char *text);
int tt_two_key_to_text (char *buttons, int quiet, char *text);
int tt_call10_to_text (char *buttons, int quiet, char *text);
int tt_mhead_to_text (char *buttons, int quiet, char *text);
int tt_satsq_to_text (char *buttons, int quiet, char *text);
/* end tt_text.h */