- Setup Basic Implementation for String Library

This commit is contained in:
2025-07-06 19:29:28 -04:00
parent a33bf5206f
commit 012052641d
17 changed files with 646 additions and 41 deletions

View File

@@ -27,6 +27,7 @@ void __assert_impl(const char* expression, const char* file, int line, const cha
__assert_callback(expression, file, line, function, description);
#ifndef NDEBUG
::abort();
#endif
}