blob: 653b6156f00d441bee1afc76d019b04e004d9f57 (
plain)
1
2
3
4
5
|
#include <daw/utils/hashmap.h>
/* Currently, this is a "works, but very poorly" placeholder implementation.
* Should be avoided in practice */
usize lolhash(const usize s, usize v) { return v % s; }
|