From 8d6e92df4f402e0b885c4850e119a0384c1598a6 Mon Sep 17 00:00:00 2001 From: Lavt Niveau Date: Thu, 22 Jun 2023 17:21:49 -0600 Subject: [PATCH] [readme] clear up ansi c support The README previously advertised ANSI C support, and while C99 is technically an ANSI standard, ANSI C means C89, not C99, in basically every circumstance. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c61403e..7601508 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ ## Features -- [Open addressing](https://en.wikipedia.org/wiki/Hash_table#Open_addressing) using [Robin Hood](https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing) hashing -- Generic interface with support for variable sized items. +- [Open addressing](https://en.wikipedia.org/wiki/Hash_table#Open_addressing) using [Robin Hood](https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing) hashing. +- Generic interface with support for variable-sized items. - Built-in [SipHash](https://en.wikipedia.org/wiki/SipHash) or [MurmurHash3](https://en.wikipedia.org/wiki/MurmurHash) and allows for alternative algorithms. -- ANSI C (C99) -- Supports custom allocators +- Supports C99 and up. +- Supports custom allocators. - Pretty darn good performance. 🚀 ## Example