home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / code_examples / librar / scram.c < prev    next >
Text File  |  1989-02-08  |  128b  |  9 lines

  1. scram(a)
  2. int a;
  3. {
  4.     int d,e;
  5.     d=(a<<12)>>8;
  6.     e=a>>4;
  7.     return(d+e);
  8. }
  9.