| 117 | } |
| 118 | |
| 119 | int cdtracknumber(struct cd_toc_head *th, int block) |
| 120 | { |
| 121 | struct cd_toc *t = gettoc(-1, th, block); |
| 122 | if (!t) |
| 123 | return -1; |
| 124 | return t->track; |
| 125 | } |
| 126 | int isaudiotrack (struct cd_toc_head *th, int block) |
| 127 | { |
| 128 | struct cd_toc *t = gettoc (-1, th, block); |
no test coverage detected