MIME::bufMatchlets PHP Method

bufMatchlets() protected method

protected bufMatchlets ( &$buf, $pos, $n )
    protected function bufMatchlets(&$buf, $pos, $n)
    {
        $m = TRUE;
        for ($j = 0; $j < $n; $j++, $pos += 32) {
            $m = $this->bufMatchlet($buf, $pos);
            if ($m) {
                break;
            }
        }
        return $m;
    }