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.
 
 

18 lines
409 B

#ifndef __FNVUTIL_H
#define __FNVUTIL_H
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
FILE *fnvOpenFile(const char *filename);
void fnvIterateThroughFile(const char *filename,
void (*func)(void *context, void *buf, uint64_t len), void *context);
void fnvApplyTestPattern(uint64_t howLong,
void (*func)(void *context, void *buf, uint64_t len), void *context);
#endif