| 196 | |
| 197 | #define FIRST_FEW_BYTES 8000 |
| 198 | int buffer_is_binary(const char *ptr, unsigned long size) |
| 199 | { |
| 200 | if (FIRST_FEW_BYTES < size) |
| 201 | size = FIRST_FEW_BYTES; |
| 202 | return !!memchr(ptr, 0, size); |
| 203 | } |
| 204 | |
| 205 | struct ff_regs { |
| 206 | int nr; |
no outgoing calls
no test coverage detected