--TEST-- Test strspn() function : usage variations - different strings with default start and len args --FILE-- --EXPECTF-- *** Testing strspn() : with different str and default start and len args *** -- Iteration with str value "" -- int(0) -- Iteration with str value "" -- int(0) -- Iteration with str value " " -- int(1) -- Iteration with str value "\n" -- int(0) -- Iteration with str value "hello world hello world " -- int(5) -- Iteration with str value "hello\tworld\nhello\nworld\n" -- int(5) -- Iteration with str value "1234hello45world 123" -- int(16) -- Iteration with str value "1234hello45world\t123" -- int(16) -- Iteration with str value "helloworld " -- int(12) -- Iteration with str value "hello\0world\012" -- int(5) -- Iteration with str value "" -- int(2) -- Iteration with str value "helloworld" -- int(13) -- Iteration with str value "hello\0world" -- int(6) -- Iteration with str value "helloworld" -- int(11) -- Iteration with str value "helloworld" -- int(11) -- Iteration with str value "hello@Şaworld" -- int(8) -- Iteration with str value "hello\0\100\xaaaworld" -- int(5) Done