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
286 B

#ifndef __ARITH1024_H
#define __ARITH1024_H
#include <stdint.h>
void fnvInit1024from64(uint64_t x[16], uint64_t initialValue);
void fnvAdd1024(uint64_t x[16], uint64_t y[16]);
void fnvMul1024(uint64_t x[16], uint64_t y[16]);
void fnv1024xor8(uint64_t x[16], unsigned char c);
#endif