diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-03-15 02:15:48 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-03-15 23:23:49 +0800 |
commit | 7fa892eca93cc1b3fd75eb9341c11f0a471970d9 (patch) | |
tree | 1d4c5484c8ae42539f79d2c4e70afddf757f0527 /libdevcore/CommonIO.h | |
parent | 269241e9105a3b3014002bf711ade985d87febe4 (diff) | |
download | dexon-solidity-7fa892eca93cc1b3fd75eb9341c11f0a471970d9.tar.gz dexon-solidity-7fa892eca93cc1b3fd75eb9341c11f0a471970d9.tar.zst dexon-solidity-7fa892eca93cc1b3fd75eb9341c11f0a471970d9.zip |
Add interactive test tool isoltest.
Diffstat (limited to 'libdevcore/CommonIO.h')
-rw-r--r-- | libdevcore/CommonIO.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libdevcore/CommonIO.h b/libdevcore/CommonIO.h index 33769ec3..3ecdb4c3 100644 --- a/libdevcore/CommonIO.h +++ b/libdevcore/CommonIO.h @@ -37,6 +37,9 @@ std::string readFileAsString(std::string const& _file); /// Retrieve and returns the contents of standard input (until EOF). std::string readStandardInput(); +/// Retrieve and returns a character from standard input (without waiting for EOL). +int readStandardInputChar(); + /// Write the given binary data into the given file, replacing the file if it pre-exists. /// Throws exception on error. /// @param _writeDeleteRename useful not to lose any data: If set, first writes to another file in |