Help for this page

Select Code to Download


  1. or download this
            return (func(token4) & 95) | (func(token5) & 32
                    | func(token5) & 128);
    
    /* "func" is defined as: */
     unsigned long func (c) unsigned char *c;
    
  2. or download this
      (0 & 95) | (32 & 32) | (32 & 128)
    
  3. or download this
    perl -e 'print ((0 & 95) | (32 & 32) | (32 & 128))'