| 439 | } |
| 440 | |
| 441 | bool cmpf(char *fn, enet_uint32 c) |
| 442 | { |
| 443 | int n = 0; |
| 444 | char *b = loadfile(fn, &n); |
| 445 | bool r = cmpb(b, n, c); |
| 446 | delete[] b; |
| 447 | return r; |
| 448 | } |
| 449 | |
| 450 | enet_uint32 adler(unsigned char *data, size_t len) |
| 451 | { |
no test coverage detected