Deleted Added
full compact
bcd.c (13459) bcd.c (13617)
1/*
2 * Some data-tables that are often used.
3 * Cannot be copyrighted.
4 */
5
6#include <sys/libkern.h>
7
8u_char const bcd2bin_data[] = {

--- 17 unchanged lines hidden (view full) ---

26 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,
27 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,
28 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,
29 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,
30 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,
31 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99
32};
33
1/*
2 * Some data-tables that are often used.
3 * Cannot be copyrighted.
4 */
5
6#include <sys/libkern.h>
7
8u_char const bcd2bin_data[] = {

--- 17 unchanged lines hidden (view full) ---

26 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,
27 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,
28 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,
29 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,
30 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,
31 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99
32};
33
34char const hex2ascii_data[] = "0123456789abcdef";
34/* This is actually used with radix [2..36] */
35char const hex2ascii_data[] = "0123456789abcdefghijklmnopqrstuvwxyz";