This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* crc32.c -- compute the CRC-32 of a data stream | |
* Copyright (C) 1995-1998 Mark Adler | |
* For conditions of distribution and use, see copyright notice in zlib.h | |
*/ | |
#include <crc.h> | |
#ifdef CRC32_FAST | |
static const unsigned int crc_table[256] = { | |
0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* OpenSimplex (Simplectic) Noise in C++ | |
* by Arthur Tombs | |
* | |
* Modified 2015-01-08 | |
* | |
* This is a derivative work based on OpenSimplex by Kurt Spencer: | |
* https://gist.github.com/KdotJPG/b1270127455a94ac5d19 | |
* | |
* Anyone is free to make use of this software in whatever way they want. |