home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume15 / xmail / part06 / revtable.h < prev   
Text File  |  1991-10-29  |  2KB  |  40 lines

  1. /*
  2. ** 256-byte table for quickly reversing the bits in an unsigned 8-bit char,
  3. ** used to convert between MSBFirst and LSBFirst image formats.
  4. */
  5.  
  6. char revtable[256] = {
  7.         0, -128,   64,  -64,   32,  -96,   96,  -32,
  8.        16, -112,   80,  -48,   48,  -80,  112,  -16,
  9.         8, -120,   72,  -56,   40,  -88,  104,  -24,
  10.        24, -104,   88,  -40,   56,  -72,  120,   -8,
  11.         4, -124,   68,  -60,   36,  -92,  100,  -28,
  12.        20, -108,   84,  -44,   52,  -76,  116,  -12,
  13.        12, -116,   76,  -52,   44,  -84,  108,  -20,
  14.        28, -100,   92,  -36,   60,  -68,  124,   -4,
  15.         2, -126,   66,  -62,   34,  -94,   98,  -30,
  16.        18, -110,   82,  -46,   50,  -78,  114,  -14,
  17.        10, -118,   74,  -54,   42,  -86,  106,  -22,
  18.        26, -102,   90,  -38,   58,  -70,  122,   -6,
  19.         6, -122,   70,  -58,   38,  -90,  102,  -26,
  20.        22, -106,   86,  -42,   54,  -74,  118,  -10,
  21.        14, -114,   78,  -50,   46,  -82,  110,  -18,
  22.        30,  -98,   94,  -34,   62,  -66,  126,   -2,
  23.         1, -127,   65,  -63,   33,  -95,   97,  -31,
  24.        17, -111,   81,  -47,   49,  -79,  113,  -15,
  25.         9, -119,   73,  -55,   41,  -87,  105,  -23,
  26.        25, -103,   89,  -39,   57,  -71,  121,   -7,
  27.         5, -123,   69,  -59,   37,  -91,  101,  -27,
  28.        21, -107,   85,  -43,   53,  -75,  117,  -11,
  29.        13, -115,   77,  -51,   45,  -83,  109,  -19,
  30.        29,  -99,   93,  -35,   61,  -67,  125,   -3,
  31.         3, -125,   67,  -61,   35,  -93,   99,  -29,
  32.        19, -109,   83,  -45,   51,  -77,  115,  -13,
  33.        11, -117,   75,  -53,   43,  -85,  107,  -21,
  34.        27, -101,   91,  -37,   59,  -69,  123,   -5,
  35.         7, -121,   71,  -57,   39,  -89,  103,  -25,
  36.        23, -105,   87,  -41,   55,  -73,  119,   -9,
  37.        15, -113,   79,  -49,   47,  -81,  111,  -17,
  38.        31,  -97,   95,  -33,   63,  -65,  127,   -1,
  39. } ;
  40.