----------------------------------------------------------------------
($str, $pos)
| 1992 | |
| 1993 | //---------------------------------------------------------------------- |
| 1994 | public static function isalnumat($str, $pos) |
| 1995 | { |
| 1996 | if ($pos >= strlen($str)) |
| 1997 | return false; |
| 1998 | |
| 1999 | return (QRinput::lookAnTable(ord($str[$pos])) >= 0); |
| 2000 | } |
| 2001 | |
| 2002 | //---------------------------------------------------------------------- |
| 2003 | public function identifyMode($pos) |
no test coverage detected