summaryrefslogtreecommitdiff
path: root/src/io.hh
blob: 8786549aa196dd23ae89b7adbea733d0008d6634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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