dtl/examples/common.hpp
Tatsuhiko Kubo a38d72a9de init
2016-03-19 18:18:05 +09:00

14 lines
200 B
C++

#ifndef DTL_EXAMPLE_COMMON_H
#define DTL_EXAMPLE_COMMON_H
#include <string>
#include <cstdio>
using namespace std;
bool isFileExist (string& fs);
bool isFewArgs (int argc, int limit = 3);
#endif