long long cdds_lseek8(bin , tag, offset, whence);
[ Arguments | Output | Examples ]
"tag" is a field tag which specifies a type of object
offset refers to. E.g. DDS_FLOAT should be used if
offset is measured in sizeof(float) words.
When tag = 0,
the nominal DDS target type (which is a trace) is used.
"offset" is a position measured relative to the whence origin. The offset should be an integer number of tag types.
whence seek origin.
SEEK_SET beginning of the file.
SEEK_CUR current file position.
SEEK_END end of the file.
BIN_TAG bin;
...
/* skip next 10000000 target types (traces) */
cdds_lseek8(bin, 0, +10000000L, SEEK_CUR);