Changeset 186 for trunk/thune/charset.c

Show
Ignore:
Timestamp:
06/17/06 21:06:45 (3 years ago)
Author:
krobillard
Message:

Thune - Can now tokenize int! as hexadecimal.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/charset.c

    r1 r186  
    5151 
    5252 
     53/* Hex: 0-9 a-z A-Z */ 
     54uint8_t charset_hex[32] = { 
     55    0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x03, 
     56    0x7E,0x00,0x00,0x00,0x7E,0x00,0x00,0x00, 
     57    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 
     58    0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 
     59}; 
     60 
     61 
    5362/*EOF*/