Advertisement
Guest User

Untitled

a guest
Mar 14th, 2011
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. if (blockheader.Type == 1)
  2.     {
  3.         int samplescan;
  4.         for (samplescan = 0; samplescan < fileheader.NumPointsWave; samplescan++)
  5.             {
  6.                 fread(&spikesamples[samplescan], sizeof(short int), 1, plxfile);
  7.                 printf("%i ", spikesamples[samplescan]);
  8.             }
  9.         printf("\n");
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement