home *** CD-ROM | disk | FTP | other *** search
- /* skip to next track */
- /* (c) copyright 1992,93 by F.J. Reichert */
-
- options results;
- options failat 11;
- toc stem a.;
- if rc = 0 then do;
- current track;
- toset = result + 1;
- /* if there are tracks, skip to next */
- if toset < a.0 then do;
- set track toset;
- end;
- /* else move to last logical block */
- else do;
- current cdtime;
- parse value result with mins':'secs':'frames;
- endblock = (mins * 60 + secs) * 75 + frames - 150 - 1;
- set block endblock;
- end;
- end;
- exit(0);
-