Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
include
/
qemu
/
crc32.h
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
h
14 lines
208 Bytes
Copy permalink
Copy
Raw
1
/*
2
* CRC32 Checksum
3
*
4
* Copyright (c) 2026 QEMU contributors
5
*
6
* SPDX-License-Identifier: GPL-2.0-or-later
7
*/
8
9
#ifndef QEMU_CRC32_H
10
#define QEMU_CRC32_H
11
12
extern
const
uint32_t
crc32_table
[
256
];
13
14
#endif