This commit is contained in:
Tatsuhiko Kubo
2016-03-19 18:18:05 +09:00
commit a38d72a9de
70 changed files with 4508 additions and 0 deletions

13
examples/common.hpp Normal file
View File

@@ -0,0 +1,13 @@
#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