This file is indexed.

/usr/include/dovecot/crc32.h is in dovecot-dev 1:2.2.9-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#ifndef CRC32_H
#define CRC32_H

uint32_t crc32_data(const void *data, size_t size) ATTR_PURE;
uint32_t crc32_str(const char *str) ATTR_PURE;

uint32_t crc32_data_more(uint32_t crc, const void *data, size_t size) ATTR_PURE;
uint32_t crc32_str_more(uint32_t crc, const char *str) ATTR_PURE;

#endif