home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / lib / xlate / isotab.c < prev    next >
Encoding:
Text File  |  1998-04-08  |  3.0 KB  |  56 lines

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18. /*
  19. ** The names of the characters in the ISO Latin1 set.
  20. ** Index into this array is the encoding for that character
  21. */
  22. char *isotab[256] = {
  23. "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
  24. "", "", "", "", "", "", "", "", "", "", "", "", "", "", "space",
  25. "exclam", "quotedbl", "numbersign", "dollar", "percent", "ampersand",
  26. "quoteright", "parenleft", "parenright", "asterisk", "plus", "comma",
  27. "hyphen", "period", "slash", "zero", "one", "two", "three", "four",
  28. "five", "six", "seven", "eight", "nine", "colon", "semicolon", "less",
  29. "equal", "greater", "question", "at", "A", "B", "C", "D", "E", "F",
  30. "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
  31. "U", "V", "W", "X", "Y", "Z", "bracketleft", "backslash",
  32. "bracketright", "asciicircum", "underscore", "quoteleft", "a", "b",
  33. "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p",
  34. "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "braceleft", "bar",
  35. "braceright", "asciitilde", "", "", "", "", "", "", "", "", "", "", "", "",
  36. "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
  37. "", "", "", "space", "exclamdown", "cent", "sterling", "currency",
  38. "yen", "brokenbar", "section", "dieresis", "copyright", "ordfeminine",
  39. "guillemotleft", "logicalnot", "hyphen", "registered", "macron",
  40. "degree", "plusminus", "twosuperior", "threesuperior", "acute", "mu",
  41. "paragraph", "periodcentered", "cedilla", "onesuperior",
  42. "ordmasculine", "guillemotright", "onequarter", "onehalf",
  43. "threequarters", "questiondown", "Agrave", "Aacute", "Acircumflex",
  44. "Atilde", "Adieresis", "Aring", "AE", "Ccedilla", "Egrave", "Eacute",
  45. "Ecircumflex", "Edieresis", "Igrave", "Iacute", "Icircumflex",
  46. "Idieresis", "Eth", "Ntilde", "Ograve", "Oacute", "Ocircumflex",
  47. "Otilde", "Odieresis", "multiply", "Oslash", "Ugrave", "Uacute",
  48. "Ucircumflex", "Udieresis", "Yacute", "Thorn", "germandbls", "agrave",
  49. "aacute", "acircumflex", "atilde", "adieresis", "aring", "ae",
  50. "ccedilla", "egrave", "eacute", "ecircumflex", "edieresis", "igrave",
  51. "iacute", "icircumflex", "idieresis", "eth", "ntilde", "ograve",
  52. "oacute", "ocircumflex", "otilde", "odieresis", "divide", "oslash",
  53. "ugrave", "uacute", "ucircumflex", "udieresis", "yacute", "thorn",
  54. "ydieresis"
  55. };
  56.