(c byte)
| 80 | } |
| 81 | |
| 82 | func IsFixedExt(c byte) bool { |
| 83 | return c >= FixExt1 && c <= FixExt16 |
| 84 | } |
| 85 | |
| 86 | func IsExt(c byte) bool { |
| 87 | return IsFixedExt(c) || c == Ext8 || c == Ext16 || c == Ext32 |
no outgoing calls
no test coverage detected
searching dependent graphs…