Change boolean size to 1 byte

This commit is contained in:
2025-12-07 12:17:40 +00:00
parent 432e4a48d5
commit 9c5b95c229
41 changed files with 489 additions and 364 deletions

View File

@@ -7,7 +7,7 @@
#define TMP_BUF_SIZE 1024
TestFuncResult test_cpath_join_path(void) {
b32 result;
b8 result;
Str8 expected = wapp_str8_buf(MAIN_BUF_SIZE);
Str8 out = wapp_str8_buf(MAIN_BUF_SIZE);
@@ -86,7 +86,7 @@ TestFuncResult test_cpath_dirname(void) {
return wapp_tester_result(false);
}
b32 result;
b8 result;
Str8 *output = NULL;
Str8 expected = wapp_str8_buf(MAIN_BUF_SIZE);
@@ -134,7 +134,7 @@ TestFuncResult test_cpath_dirup(void) {
return wapp_tester_result(false);
}
b32 result;
b8 result;
Str8 *output = NULL;
Str8 expected = wapp_str8_buf(MAIN_BUF_SIZE);

View File

@@ -7,7 +7,7 @@
#define TMP_BUF_SIZE 1024
TestFuncResult test_cpath_join_path(void) {
b32 result;
b8 result;
Str8 expected = wapp_str8_buf(MAIN_BUF_SIZE);
Str8 out = wapp_str8_buf(MAIN_BUF_SIZE);
@@ -107,7 +107,7 @@ TestFuncResult test_cpath_dirname(void) {
return wapp_tester_result(false);
}
b32 result;
b8 result;
Str8 *output = nullptr;
Str8 expected = wapp_str8_buf(MAIN_BUF_SIZE);
@@ -157,7 +157,7 @@ TestFuncResult test_cpath_dirup(void) {
return wapp_tester_result(false);
}
b32 result;
b8 result;
Str8 *output = nullptr;
Str8 expected = wapp_str8_buf(MAIN_BUF_SIZE);