summaryrefslogtreecommitdiffstats
path: root/src/trie.c
AgeCommit message (Expand)Author
2023-05-03style: Don't use tabs to indent preprocessor directivesTavian Barnes
2023-03-31list: Use macros instead of type-erased listsTavian Barnes
2023-03-29trie: Use list.h for the list of leavesTavian Barnes
2023-01-25Replace license boilerplate with SPDX tagsTavian Barnes
2022-12-07trie: Use static_assert() instead of #errorTavian Barnes
2022-11-21config: Support target_clones on more platformsTavian Barnes
2022-11-16trie: Limit target_clones to glibcTavian Barnes
2022-11-09trie: Check __has_attribute(target_clones) before using itTavian Barnes
2022-11-06config: Split out some of util.h into a new headerTavian Barnes
2022-11-01trie: Optimize trie_mismatch() with tzcntTavian Barnes
2022-10-30trie: Use target_clones() for popcntTavian Barnes
2022-10-30trie: Refactor insertion to allocate the leaf in one placeTavian Barnes
2022-10-29trie: Make leaves into a linked listTavian Barnes
2022-10-29trie: New is_power_of_two() helperTavian Barnes
2022-10-29trie: Convert ASCII art to Unicode artTavian Barnes
2022-04-16Source / Include Folder (#88)トトも