10 lines
167 B
C++
10 lines
167 B
C++
#ifndef DTL_EXAMPLE_COMMON_H
|
|
#define DTL_EXAMPLE_COMMON_H
|
|
|
|
#include "dtl/dtl.hpp"
|
|
|
|
bool isFileExist(std::string &fs);
|
|
bool isFewArgs(int argc, int limit = 3);
|
|
|
|
#endif
|