check.docs
来自「GTK+-2.0源码之pango-1.15.6.tar.gz」· DOCS 代码 · 共 30 行
DOCS
30 行
#!/bin/bashLANG=Ctest -z "$srcdir" && srcdir=.status=0if ! test -f pango-undocumented.txt -a -f pango-unused.txt; then echo At least one of pango-undocumented.txt and pango-unused.txt not found. echo Skipping test. exit 0fistatus=0unused=`cat pango-unused.txt`if test -n "$unused"; then echo Unused documentated symbols: cat pango-unused.txt status=1fiif ! grep '^0 symbols incomplete' pango-undocumented.txt >/dev/null || ! grep '^0 not documented' pango-undocumented.txt >/dev/null; then echo Incomplete or undocumented symbols: cat pango-unused.txt status=1fiexit $status
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?