Ai
20 Star 43 Fork 13

GiteeStudio/git-analyze

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
update_test.cc 447 Bytes
一键复制 编辑 原始数据 按行查看 历史
江二十三 提交于 2019-03-27 17:51 +08:00 . Add update_test
////
#include "engine.hpp"
int main() {
RulesEngine re;
re.AddPrefix("lib/");
re.AddPrefix("usr/bin/");
constexpr const char *dirs[] = {"lib", "lib64", "lib/libc++.a",
"usr/bin/bash", "var/log"};
for (auto d : dirs) {
if (re.FullMatch(d)) {
fprintf(stderr, "Path '%s' is readonly\n", d);
} else {
fprintf(stderr, "Path '%s' is writeable\n", d);
}
}
/* code */
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/oscstudio/git-analyze.git
git@gitee.com:oscstudio/git-analyze.git
oscstudio
git-analyze
git-analyze
master

搜索帮助