log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
crc32
comparison crc32.h @ 0:
422835bc1aca
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
*: checkin
author
Paper <paper@tflc.us>
date
Mon, 09 Feb 2026 01:15:00 -0500
parents
children
comparison
equal
deleted
inserted
replaced
-1:000000000000
0:422835bc1aca
1
#ifndef CRC32_H_
2
#define CRC32_H_
3
4
#include <stdint.h>
5
#include <stddef.h>
6
7
uint32_t crc32(const unsigned char *msg, size_t sz);
8
9
#endif