* Reads one character from the stream. * * @param[out] c Character to read. * @returns Whether the character was read. * A return value of false signals the end * of stream. */
| 53 | * of stream. |
| 54 | */ |
| 55 | inline bool ReadChar(char& c) { |
| 56 | return DoRead(&c, 1) > 0; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Reads all characters from the stream until the given character is |
no outgoing calls
no test coverage detected