From e8603e7fd641fdd5236c5d9138240fe2dae026c8 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Fri, 25 Nov 2022 17:56:31 +0100 Subject: [PATCH] Updated README file. --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index dd835dd..94f9540 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,28 @@ A `struct` that represents a hash set instance. Instances can be allocated and d typedef struct _hash_set hash_set_t; ``` +Globals +------- + +### Version information + +The *major*, *minor* and *patch* version of the LibHashSet library: + +```C +extern const uint16_t HASHSET_VERSION_MAJOR; +extern const uint16_t HASHSET_VERSION_MINOR; +extern const uint16_t HASHSET_VERSION_PATCH; +``` + +### Build information + +The build *date* and *time* of the LibHashSet library: + +```C +extern const char *const HASHSET_BUILD_DATE; +extern const char *const HASHSET_BUILD_TIME; +``` + Functions ---------