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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef __E_NAME_WESTERN_TABLES_H__
#define __E_NAME_WESTERN_TABLES_H__
char *e_name_western_pfx_table[] = {
/*
* English.
*/
"mister", "miss.", "mr.", "mrs.", "ms.",
"miss", "mr", "mrs", "ms", "sir",
"professor", "prof.", "dr", "dr.", "doctor",
"reverend", "president", "judge", "senator",
"congressman", "congresswoman",
"the honorable", "the reverend", "his holiness",
"his eminence",
/*
* French.
*/
"monsieur", "mr.", "mademoiselle", "melle.",
"madame", "mme.", "professeur",
/*
* Spanish.
*/
"senor", "senora", "senorita",
NULL};
char *e_name_western_sfx_table[] = {
/*
* English.
*/
"junior", "senior", "jr", "sr", "I", "II", "III", "IV", "V",
"phd", "ms", "md", "esq", "esq.", "esquire",
NULL};
char *e_name_western_twopart_sfx_table[] = {
/*
* English.
*/
"the first", "the second", "the third",
NULL};
char *e_name_western_complex_last_table[] = {"van", "von", "de", NULL};
#endif /* ! __E_NAME_WESTERN_TABLES_H__ */
|