23 lines
612 B
C
23 lines
612 B
C
/******************************************************************************/
|
|
/* HashSet for C99, by LoRd_MuldeR <MuldeR2@GMX.de> */
|
|
/* This work has been released under the CC0 1.0 Universal license! */
|
|
/******************************************************************************/
|
|
|
|
#ifndef _EXAMPLE_INPUT_INCLUDED
|
|
#define _EXAMPLE_INPUT_INCLUDED
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint64_t key;
|
|
uint64_t value;
|
|
}
|
|
pair_t;
|
|
|
|
int have_more_items(const size_t offset);
|
|
pair_t get_next_item(const size_t offset);
|
|
|
|
#endif /*_EXAMPLE_INPUT_INCLUDED*/
|