]> git.ipfire.org Git - thirdparty/sarg.git/blame - charset.c
Moved all the functions declarations from conf.h to defs.h for consistency.
[thirdparty/sarg.git] / charset.c
CommitLineData
c37945ed
FM
1/*
2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
3 * 1998, 2008
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"
5f3cfd1d 27#include "include/defs.h"
c37945ed 28
32e71fa4 29void ccharset(char *CharSet)
c37945ed 30{
d6e703cc
FM
31 if(strcmp(CharSet,"Latin2") == 0) strcpy(CharSet,"ISO-8859-2");
32 else if(strcmp(CharSet,"Latin3") == 0) strcpy(CharSet,"ISO-8859-3");
33 else if(strcmp(CharSet,"Latin4") == 0) strcpy(CharSet,"ISO-8859-4");
34 else if(strcmp(CharSet,"Cyrillic") == 0) strcpy(CharSet,"ISO-8859-5");
35 else if(strcmp(CharSet,"Arabic") == 0) strcpy(CharSet,"ISO-8859-6");
36 else if(strcmp(CharSet,"Greek") == 0) strcpy(CharSet,"ISO-8859-7");
37 else if(strcmp(CharSet,"Hebrew") == 0) strcpy(CharSet,"ISO-8859-8");
38 else if(strcmp(CharSet,"Latin5") == 0) strcpy(CharSet,"ISO-8859-9");
39 else if(strcmp(CharSet,"Latin6") == 0) strcpy(CharSet,"ISO-8859-10");
40 else if(strcmp(CharSet,"Windows-1251") == 0) strcpy(CharSet,"Windows-1251");
41 else if(strcmp(CharSet,"Japan") == 0) strcpy(CharSet,"EUC-JP");
42 else if(strcmp(CharSet,"Koi8-r") == 0) strcpy(CharSet,"KOI8-R");
43 else if(strcmp(CharSet,"UTF-8") == 0) strcpy(CharSet,"UTF-8");
c37945ed 44 return;
c37945ed 45}