ostream::print("%s", xxx) will not truncate for a longish xxx
ostream::print_cr("%s", xxx) does truncate a longish xxx to the (rather small) O_BUFLEN
This is not necessary and slightly confusing, since this could be done equally well with print() followed by cr() , which would not truncate.
ostream::print_cr("%s", xxx) does truncate a longish xxx to the (rather small) O_BUFLEN
This is not necessary and slightly confusing, since this could be done equally well with print() followed by cr() , which would not truncate.