test: add and update a few tests

This commit is contained in:
2025-09-22 10:55:20 +01:00
parent 11fd147031
commit b4360e9bdc
6 changed files with 337 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ int main(void)
b_dict_iterator it;
b_dict_foreach(&it, dict)
{
printf("item %zu: %s=%d\n", it.i, it.key,
printf("item %zu: %s=%d\n", it.i, b_string_ptr(it.key),
b_number_get_int(B_NUMBER(it.value)));
}