We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CTL_hash_map ctl; void test_hash2(void) { CTL_hash_map_iterator ctl_it; int key = 11;
srand((unsigned)time(NULL)); memset(&ctl, 0, sizeof(ctl)); memset(&ctl_it, 0, sizeof(ctl_it)); CTL_hash_map_new(&ctl, sizeof(int), sizeof(int)); for (int i = 0; i < 12; i++) { CTL_hash_map_insert(&ctl, &i, &i); } printf("%s... \r\n", (CTL_hash_map_find(&ctl, &key, &ctl_it) == 0 ? "OK":"ERR")); fflush(stdout);
}
Test many times , many errors when find the last one element
The text was updated successfully, but these errors were encountered:
This is a bug caused by resize and has been fixed. Please try to pull up the latest main branch.
Sorry, something went wrong.
No branches or pull requests
CTL_hash_map ctl;
void test_hash2(void)
{
CTL_hash_map_iterator ctl_it;
int key = 11;
}
Test many times , many errors when find the last one element
The text was updated successfully, but these errors were encountered: