diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2021-01-27 22:06:49 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2021-01-27 22:06:49 +0100 |
| commit | 06950aab233de6a2f47293d59575bb42f6131660 (patch) | |
| tree | 62f6eed4a6d35414f656d22b9ac7420849018a11 /src/io.hh | |
| parent | 1ef9c463f1efc1adfb62e42ab3dd17e8c6394373 (diff) | |
Complete rewrite using C++ and with shared state support
Diffstat (limited to 'src/io.hh')
| -rw-r--r-- | src/io.hh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/io.hh b/src/io.hh new file mode 100644 index 0000000..8786549 --- /dev/null +++ b/src/io.hh @@ -0,0 +1,13 @@ +#ifndef IO_HH +#define IO_HH + +#include <string> + +namespace io { + +bool read_all(int fd, std::string* out); +bool write_all(int fd, std::string const& in); + +} // namespace io + +#endif // IO_HH |
