10 lines
188 B
C++
10 lines
188 B
C++
#ifndef _MINE_IO_H
|
|
#define _MINE_IO_H _MINE_IO_H
|
|
|
|
#include <vector>
|
|
|
|
void readAll(int fd, std::vector<unsigned char> &buf);
|
|
void readLine(int fd, std::vector<unsigned char> &buf);
|
|
|
|
#endif
|