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