From: Wez Furlong Date: Tue, 29 Oct 2002 14:36:49 +0000 (+0000) Subject: I like my C comments, thanks very much. X-Git-Tag: php-4.3.0RC1~454 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4a517015e9a88a3aad871de08be7409a7189370;p=php I like my C comments, thanks very much. --- diff --git a/ext/standard/tests/file/userstreams.phpt b/ext/standard/tests/file/userstreams.phpt index f62b6160d4..12c5fe1399 100644 --- a/ext/standard/tests/file/userstreams.phpt +++ b/ext/standard/tests/file/userstreams.phpt @@ -4,9 +4,9 @@ User-space streams "SEEK_END" ); -// generate some random seek offsets +/* generate some random seek offsets */ $position = 0; for ($i = 0; $i < 256; $i++) { $whence = $whence_map[array_rand($whence_map, 1)]; @@ -224,14 +224,14 @@ for ($i = 0; $i < 256; $i++) { $seeks[] = array($whence, $offset, $position); } -// we compare the results of fgets using differing line lengths to -// test the fgets layer also +/* we compare the results of fgets using differing line lengths to + * test the fgets layer also */ $line_lengths = array(1024, 256, 64, 16); $fail_count = 0; ob_start(); foreach($line_lengths as $line_length) { - // now compare the real stream with the user stream + /* now compare the real stream with the user stream */ $j = 0; rewind($tf); rewind($fp); @@ -301,7 +301,6 @@ while(!feof($fp)) { if ($fail_count == 0) { echo "FGETS: OK\n"; } -/**/ ?> --EXPECT-- Not Registered