replaced char* function arguments with str

This commit is contained in:
2025-11-10 02:16:02 +05:00
parent 247d291da6
commit c83ee4078e
3 changed files with 63 additions and 175 deletions

View File

@@ -59,7 +59,7 @@ void print_keyval(const TomlKeyValue *keyval)
void print_table(const TomlTable* table)
{
TomlTableIter it = toml_table_iter_new((TomlTable* )table);
TomlTableIter it = toml_table_iter_new((TomlTable*)table);
printf("{");
u64 i = 0;
@@ -117,7 +117,7 @@ i32 main(void)
PROJECT_SOURCE_DIR "/tests/hard_example_unicode.toml"
};
i32 total_tests = sizeof(filenames) / sizeof(char* );
i32 total_tests = sizeof(filenames) / sizeof(char*);
i32 num_passed = 0;
i32 num_failed = 0;