]> git.ipfire.org Git - thirdparty/sarg.git/blame - charset.c
Imported sarg 2.0.9
[thirdparty/sarg.git] / charset.c
CommitLineData
25697a35 1/*\r
94ff9470 2 * AUTHOR: Pedro Lineu Orso orso@penguintech.com.br\r
25697a35 3 * 1998, 2005\r
94ff9470 4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net\r
25697a35
GS
5 *\r
6 * SARG donations:\r
7 * please look at http://sarg.sourceforge.net/donations.php\r
8 * ---------------------------------------------------------------------\r
9 *\r
10 * This program is free software; you can redistribute it and/or modify\r
11 * it under the terms of the GNU General Public License as published by\r
12 * the Free Software Foundation; either version 2 of the License, or\r
13 * (at your option) any later version.\r
14 *\r
15 * This program is distributed in the hope that it will be useful,\r
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
18 * GNU General Public License for more details.\r
19 *\r
20 * You should have received a copy of the GNU General Public License\r
21 * along with this program; if not, write to the Free Software\r
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.\r
23 *\r
24 */\r
25\r
26#include "include/conf.h"\r
27\r
28void ccharset()\r
29{\r
30\r
31 if(strcmp(CharSet,"Latin2") == 0)\r
32 strcpy(CharSet,"ISO-8859-2");\r
33\r
34 if(strcmp(CharSet,"Latin3") == 0)\r
35 strcpy(CharSet,"ISO-8859-3");\r
36\r
37 if(strcmp(CharSet,"Latin4") == 0)\r
38 strcpy(CharSet,"ISO-8859-4");\r
39\r
40 if(strcmp(CharSet,"Cyrillic") == 0)\r
41 strcpy(CharSet,"ISO-8859-5");\r
42\r
43 if(strcmp(CharSet,"Arabic") == 0)\r
44 strcpy(CharSet,"ISO-8859-6");\r
45\r
46 if(strcmp(CharSet,"Greek") == 0)\r
47 strcpy(CharSet,"ISO-8859-7");\r
48\r
49 if(strcmp(CharSet,"Hebrew") == 0)\r
50 strcpy(CharSet,"ISO-8859-8");\r
51\r
52 if(strcmp(CharSet,"Latin5") == 0)\r
53 strcpy(CharSet,"ISO-8859-9");\r
54\r
55 if(strcmp(CharSet,"Latin6") == 0)\r
56 strcpy(CharSet,"ISO-8859-10");\r
57\r
58 if(strcmp(CharSet,"Windows-1251") == 0)\r
59 strcpy(CharSet,"Windows-1251");\r
60\r
61 if(strcmp(CharSet,"Koi8-r") == 0)\r
62 strcpy(CharSet,"KOI8-R");\r
63\r
64 return;\r
65\r
66}\r