Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. /* character-name table */
  3. static struct cname {
  4.         char *name;
  5.         char code;
  6. } cnames[] = {
  7.         "NUL"'\0',
  8.         "SOH"'\001',
  9.         "STX"'\002',
  10.         "ETX"'\003',
  11.         "EOT"'\004',
  12.         "ENQ"'\005',
  13.         "ACK"'\006',
  14.         "BEL"'\007',
  15.         "alert",        '\007',
  16.         "BS",           '\010',
  17.         "backspace",    '\b',
  18.         "HT",           '\011',
  19.         "tab",          '\t',
  20.         "LF",           '\012',
  21.         "newline",      '\n',
  22.         "VT",           '\013',
  23.         "vertical-tab", '\v',
  24.         "FF",           '\014',
  25.         "form-feed",    '\f',
  26.         "CR",           '\015',
  27.         "carriage-return",      '\r',
  28.         "SO",   '\016',
  29.         "SI",   '\017',
  30.         "DLE"'\020',
  31.         "DC1"'\021',
  32.         "DC2"'\022',
  33.         "DC3"'\023',
  34.         "DC4"'\024',
  35.         "NAK"'\025',
  36.         "SYN"'\026',
  37.         "ETB"'\027',
  38.         "CAN"'\030',
  39.         "EM",   '\031',
  40.         "SUB"'\032',
  41.         "ESC"'\033',
  42.         "IS4"'\034',
  43.         "FS",   '\034',
  44.         "IS3"'\035',
  45.         "GS",   '\035',
  46.         "IS2"'\036',
  47.         "RS",   '\036',
  48.         "IS1"'\037',
  49.         "US",   '\037',
  50.         "space",                ' ',
  51.         "exclamation-mark",     '!',
  52.         "quotation-mark",       '"',
  53.         "number-sign",          '#',
  54.         "dollar-sign",          '$',
  55.         "percent-sign",         '%',
  56.         "ampersand",            '&',
  57.         "apostrophe",           '\'',
  58.         "left-parenthesis",     '(',
  59.         "right-parenthesis",    ')',
  60.         "asterisk",     '*',
  61.         "plus-sign",    '+',
  62.         "comma",        ',',
  63.         "hyphen",       '-',
  64.         "hyphen-minus", '-',
  65.         "period",       '.',
  66.         "full-stop",    '.',
  67.         "slash",        '/',
  68.         "solidus",      '/',
  69.         "zero",         '0',
  70.         "one",          '1',
  71.         "two",          '2',
  72.         "three",        '3',
  73.         "four",         '4',
  74.         "five",         '5',
  75.         "six",          '6',
  76.         "seven",        '7',
  77.         "eight",        '8',
  78.         "nine",         '9',
  79.         "colon",        ':',
  80.         "semicolon",    ';',
  81.         "less-than-sign",       '<',
  82.         "equals-sign",          '=',
  83.         "greater-than-sign",    '>',
  84.         "question-mark",        '?',
  85.         "commercial-at",        '@',
  86.         "left-square-bracket"'[',
  87.         "backslash",            '\\',
  88.         "reverse-solidus",      '\\',
  89.         "right-square-bracket", ']',
  90.         "circumflex",           '^',
  91.         "circumflex-accent",    '^',
  92.         "underscore",           '_',
  93.         "low-line",             '_',
  94.         "grave-accent",         '`',
  95.         "left-brace",           '{',
  96.         "left-curly-bracket",   '{',
  97.         "vertical-line",        '|',
  98.         "right-brace",          '}',
  99.         "right-curly-bracket"'}',
  100.         "tilde",                '~',
  101.         "DEL"'\177',
  102.         NULL,   0,
  103. };
  104.