init
This commit is contained in:
20
examples/common.cpp
Normal file
20
examples/common.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
#include "common.hpp"
|
||||
|
||||
bool isFileExist (string& fs) {
|
||||
FILE *fp;
|
||||
if ((fp = fopen(fs.c_str(), "r")) == NULL) {
|
||||
return false;
|
||||
}
|
||||
fclose(fp);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool isFewArgs (int argc, int limit) {
|
||||
bool ret = false;
|
||||
if (argc < limit) {
|
||||
ret = true;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user