int cdds_write(bin, tag, buf, count);
tag is a field tag, previously obtained eg. from cdds_member. It specifies a tag associated with bin. This provides a scale factor for count. If tag is zero (nominal), it defaults to the SEQUENCE (trace type) associated with bin.
Data is written from buf. The minimum size is count times the size of tag.
The return value is the number of types actually written, or EOF if an error occurred before any transfer.
BIN_TAG out_bin; char *buf; ... /* write 10 traces into type buffer */ cdds_write(out_bin, 0, buf, 10);
cdds_writem Write binary stream & map buffer