/******************************************************************************/ /* HashSet for C99, by LoRd_MuldeR */ /* This work has been released under the CC0 1.0 Universal license! */ /******************************************************************************/ #ifndef _EXAMPLE_INPUT_INCLUDED #define _EXAMPLE_INPUT_INCLUDED #include #include 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*/