1 /*
2  *  $Id: server_env.c,v 1.5 2002/03/24 01:25:13 hiroo Exp $
3  */
4 
5 /*
6  * FreeWnn is a network-extensible Kana-to-Kanji conversion system.
7  * This file is part of FreeWnn.
8  *
9  * Copyright Kyoto University Research Institute for Mathematical Sciences
10  *                 1987, 1988, 1989, 1990, 1991, 1992
11  * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
12  * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
13  * Copyright FreeWnn Project 1999, 2000, 2002
14  *
15  * Maintainer:  FreeWnn Project   <freewnn@tomo.gr.jp>
16  *
17  * This program is free software; you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation; either version 2 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
30  */
31 
32 #ifdef HAVE_CONFIG_H
33 #  include <config.h>
34 #endif
35 
36 #include <stdio.h>
37 #if STDC_HEADERS
38 #  include <string.h>
39 #elif HAVE_STRINGS_H
40 #  include <strings.h>
41 #endif /* STDC_HEADERS */
42 
43 #include "commonhd.h"
44 #include "wnn_config.h"
45 #include "wnn_os.h"
46 
47 typedef struct _server_env_struct {
48 	char *lang;
49 	char *env;
50 } server_env_struct;
51 
52 static server_env_struct server_env[] = {
53 	{WNN_J_LANG, WNN_JSERVER_ENV},
54 	{WNN_C_LANG, WNN_CSERVER_ENV},
55 	{WNN_K_LANG, WNN_KSERVER_ENV},
56 	{WNN_T_LANG, WNN_TSERVER_ENV},
57 	{NULL, NULL}
58 };
59 
60 char *
get_server_env(register char * lang)61 get_server_env(register char *lang)
62 {
63 	register server_env_struct *p;
64 
65 	if (!lang || !*lang)
66 		return (NULL);
67 
68 	for (p = server_env; p->lang; p++) {
69 		if (!strncmp(lang, p->lang, strlen(lang)))
70 			return (p->env);
71 	}
72 
73 	return (NULL);
74 }
75