This file is indexed.

/usr/include/bglibs/crc/crc16_arc.h is in libbg1-dev 1.106-3.

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
11
12
13
14
#ifndef CRC16__ARC__H__
#define CRC16__ARC__H__

#include <crc/gcrc.h>

#define CRC16_ARC_POLY ((uint16)0x8005)
#define CRC16_ARC_INIT ((uint16)0)
#define CRC16_ARC_POST ((uint16)0)

extern const uint16 crc16_arc_table[256];
#define crc16_arc_update(C,D,L) gcrc16rfl((C),(D),(L),crc16_arc_table)
#define crc16_arc_block(B,L) crc16_arc_update(0,(B),(L))

#endif