| 275 | } |
| 276 | |
| 277 | void crcspeed16native_init(crcfn16 fn, uint16_t table[8][256]) { |
| 278 | uint64_t n = 1; |
| 279 | |
| 280 | *(char *)&n ? crcspeed16little_init(fn, table) |
| 281 | : crcspeed16big_init(fn, table); |
| 282 | } |
nothing calls this directly
no test coverage detected