Help for this page

Select Code to Download


  1. or download this
    #define getsextet(UV, I) (( (UV) & ( 0x7f << (6*(I)) ) >> 6*(I))
    
  2. or download this
    #define clrsextet(UV, I) ( (UV) & ~( 0x7f << (6*(I)) )
    #define setsextet(UV, I, S) ( (UV) | ( ((S) & 0x7f) << (6*(I)) )