14 lines
198 B
C++
14 lines
198 B
C++
|
|
#ifndef DTL_EXAMPLE_COMMON_H
|
|
#define DTL_EXAMPLE_COMMON_H
|
|
|
|
#include <cstdio>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
bool isFileExist(string &fs);
|
|
bool isFewArgs(int argc, int limit = 3);
|
|
|
|
#endif
|