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