icfp15/io.h

10 lines
188 B
C
Raw Permalink Normal View History

2012-07-14 07:26:38 +00:00
#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