----------------------------------------------------------------------
($str, $pos)
| 55 | |
| 56 | //---------------------------------------------------------------------- |
| 57 | public static function isalnumat($str, $pos) |
| 58 | { |
| 59 | if ($pos >= strlen($str)) |
| 60 | return false; |
| 61 | |
| 62 | return (QRinput::lookAnTable(ord($str[$pos])) >= 0); |
| 63 | } |
| 64 | |
| 65 | //---------------------------------------------------------------------- |
| 66 | public function identifyMode($pos) |
no test coverage detected