A collection of programs written in ponylang.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
274 B

#ifndef __ARITH256_H
#define __ARITH256_H
#include <stdint.h>
void fnvInit256from64(uint64_t x[4], uint64_t initialValue);
void fnvAdd256(uint64_t x[4], uint64_t y[4]);
void fnvMul256(uint64_t x[4], uint64_t y[4]);
void fnv256xor8(uint64_t x[4], unsigned char c);
#endif