libclamav/encoding_aliases.h
3506ac49
 /*
  *  HTML Entity & Encoding normalization.
  *
2023340a
  *  Copyright (C) 2007-2008 Sourcefire, Inc.
  *
  *  Authors: Török Edvin
3506ac49
  *
  *  This program is free software; you can redistribute it and/or modify
b0b8398b
  *  it under the terms of the GNU General Public License version 2 as
38a00199
  *  published by the Free Software Foundation.
3506ac49
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
  */
 
b0b8398b
 #include <hashtab.h>
cc447ac8
 static struct cli_element aliases_htable_elements[] = {
b8a505ee
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
c3671221
 	{"UTF32BE", 3, 7},
b8a505ee
 	{NULL,0,0},
 	{NULL,0,0},
 	{"UTF-16LE", 7, 8},
 	{NULL,0,0},
 	{NULL,0,0},
c3671221
 	{"UCS-4BE", 3, 7},
 	{"UTF32LE", 2, 7},
 	{NULL,0,0},
 	{"ISO-10646/UTF8", 8, 14},
b8a505ee
 	{NULL,0,0},
 	{"UTF-16BE", 6, 8},
c3671221
 	{"UTF-32BE", 3, 8},
b8a505ee
 	{NULL,0,0},
 	{NULL,0,0},
c3671221
 	{"UCS2", 1, 4},
b8a505ee
 	{"UTF16BE", 6, 7},
 	{NULL,0,0},
c3671221
 	{"UTF32", 0, 5},
 	{"UCS-4", 0, 5},
 	{"UTF-16", 1, 6},
b8a505ee
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{"ISO-10646/UCS2", 1, 14},
 	{NULL,0,0},
c3671221
 	{NULL,0,0},
b8a505ee
 	{"UTF-8", 8, 5},
c3671221
 	{"ISO-10646/UTF-8", 8, 15},
 	{"UCS4", 0, 4},
 	{"10646-1:1993/UCS4", 0, 17},
 	{NULL,0,0},
 	{NULL,0,0},
 	{"UTF16LE", 7, 7},
 	{"UCS-4LE", 2, 7},
 	{"ISO-10646", 0, 9},
 	{"UTF-32LE", 2, 8},
 	{"UTF8", 8, 4},
 	{"ISO-10646/UCS4", 0, 14},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{"10646-1:1993", 0, 12},
 	{"UTF-32", 0, 6},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
b8a505ee
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
 	{NULL,0,0},
3506ac49
 };
cc447ac8
 const struct cli_hashtable aliases_htable = {
c3671221
 	aliases_htable_elements, 64, 25, 51
3506ac49
 };