加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
generateexportedsymbols.awk 263 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jan Vorlicek 提交于 2015-07-15 23:08 . Extend the Unix hosting API
{
# Remove the CR character in case the sources are mapped from
# a Windows share and contain CRLF line endings
gsub(/\r/,"", $0);
# Skip empty lines and comment lines starting with semicolon
if (NF && !match($0, /^[:space:]*;/))
{
print "_" $0;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化