1 #ifndef MSP_IO_UTILS_H_
2 #define MSP_IO_UTILS_H_
9 /** Reads data from an object. Does not return until the requested amount of
10 data is read, regardless of the blocking mode of the object.
12 Note: If the data is not immediately available and the object is in non-blocking
13 mode, this function effectively becomes a busyloop until it can get more
15 unsigned read_all(Base &, char *, unsigned);