/**
 * @module
 *
 * CRC-3/GSM
 */

import { crc, type CrcInterface } from '../crc.js';

/**
 * CRC-3/GSM
 */
export default crc(
	3,
	0x3,
	false,
	0x0,
	false,
	0x7,
) as CrcInterface<number>;
