(var)
| 146 | |
| 147 | |
| 148 | def islong_long(var): |
| 149 | if not isscalar(var): |
| 150 | return 0 |
| 151 | if var.get('typespec') not in ['integer', 'logical']: |
| 152 | return 0 |
| 153 | return get_kind(var) == '8' |
| 154 | |
| 155 | |
| 156 | def isunsigned_char(var): |
no test coverage detected
searching dependent graphs…