dtl/examples/common.hpp
2024-06-03 09:59:35 -05:00

10 lines
163 B
C++

#ifndef DTL_EXAMPLE_COMMON_H
#define DTL_EXAMPLE_COMMON_H
#include "dtl.hpp"
bool isFileExist(std::string &fs);
bool isFewArgs(int argc, int limit = 3);
#endif