[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.
pull/31/head
Lavt Niveau 1 year ago committed by GitHub
parent 84d0d3bf75
commit 8d6e92df4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save