apicheck_c.pl

来自「source of perl for linux application,」· PL 代码 · 共 30 行

PL
30
字号
##################################################################################  apicheck_c.PL -- generate apicheck.c###################################################################################  $Revision: 9 $#  $Author: mhx $#  $Date: 2007/01/02 12:32:27 +0100 $###################################################################################  Version 3.x, Copyright (C) 2004-2007, Marcus Holland-Moritz.#  Version 2.x, Copyright (C) 2001, Paul Marquess.#  Version 1.x, Copyright (C) 1999, Kenneth Albanowski.##  This program is free software; you can redistribute it and/or#  modify it under the same terms as Perl itself.#################################################################################use strict;my $out = 'apicheck.c';my @api = map { /^--api=(\w+)$/ ? ($1) : () } @ARGV;print "creating $out", (@api ? " (@api)" : ''), "\n";system $^X, 'parts/apicheck.pl', @api, $out    and die "couldn't create $out\n";

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?