pub unsafe extern "C" fn discid_get_toc_string(
    d: *mut DiscId
) -> *mut c_char
Expand description

Return a string representing CD Table Of Contents (TOC).

The string has following values separated by space: first track number last track number total length in sectors offset of 1st track offset of 2nd track …

Example: 1 7 164900 150 22460 50197 80614 100828 133318 144712

The returned string is only valid as long as the DiscId object exists.

@param d a DiscId object created by discid_new() @return a string containing TOC information