⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strlfuncs.t

📁 source of perl for linux application,
💻 T
字号:
##################################################################################            !!!!!   Do NOT edit this file directly!   !!!!!##            Edit mktests.PL and/or parts/inc/strlfuncs instead.##  This file was automatically generated from the definition files in the#  parts/inc/ subdirectory by mktests.PL. To learn more about how all this#  works, please read the F<HACKERS> file that came with this distribution.#################################################################################BEGIN {  if ($ENV{'PERL_CORE'}) {    chdir 't' if -d 't';    @INC = ('../lib', '../ext/Devel/PPPort/t') if -d '../lib' && -d '../ext';    require Config; import Config;    use vars '%Config';    if (" $Config{'extensions'} " !~ m[ Devel/PPPort ]) {      print "1..0 # Skip -- Perl configured without Devel::PPPort module\n";      exit 0;    }  }  else {    unshift @INC, 't';  }  sub load {    eval "use Test";    require 'testutil.pl' if $@;  }  if (13) {    load();    plan(tests => 13);  }}use Devel::PPPort;use strict;$^W = 1;package Devel::PPPort;use vars '@ISA';require DynaLoader;@ISA = qw(DynaLoader);bootstrap Devel::PPPort;package main;my @e = (3, 'foo',         6, 'foobar',         9, 'foobarb',         10, '1234567',         4, '1234',         16, '1234567',        );my @r = Devel::PPPort::my_strlfunc();ok(@e == @r);for (0 .. $#e) {  ok($r[$_], $e[$_]);}

⌨️ 快捷键说明

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