#if !defined(__COMPRESS_H)
#define __COMPRESS_H

const int shift_table[16] = {
  -0x80, -0x40, -0x20, -0x10, -0x8, -0x4, -0x2, - 0x1,
   0x1, 0x2, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80  
};

#endif

