Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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.     }