Skip to content

Instantly share code, notes, and snippets.

@Lazzlo2096
Lazzlo2096 / crc32.c
Created November 14, 2018 18:51 — forked from Jessidhia/crc32.c
CRC32 summer in C; unicode-compatible on windows
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#define CHUNK_SIZE 4096
#ifdef _WIN32
#include <wchar.h>
#include <io.h>
#define WIN32_LEAN_AND_MEAN