14 lines
603 B
C
14 lines
603 B
C
/******************************************************************************/
|
|
/* HashSet for C99, by LoRd_MuldeR <MuldeR2@GMX.de> */
|
|
/* This work has been released under the CC0 1.0 Universal license! */
|
|
/******************************************************************************/
|
|
|
|
#include <hash_set.h>
|
|
|
|
const uint16_t HASHSET_VERSION_MAJOR = UINT16_C(1);
|
|
const uint16_t HASHSET_VERSION_MINOR = UINT16_C(2);
|
|
const uint16_t HASHSET_VERSION_PATCH = UINT16_C(0);
|
|
|
|
const char *const HASHSET_BUILD_DATE = __DATE__;
|
|
const char *const HASHSET_BUILD_TIME = __TIME__;
|