Port filesystem to ubuntu, add filesystem tests

This commit is contained in:
Krzosa Karol
2024-01-04 21:54:16 +01:00
parent d13c0e6f86
commit 7c9c337194
10 changed files with 374 additions and 47 deletions

View File

@@ -596,7 +596,7 @@ STBSP__PUBLICDEF int STB_SPRINTF_DECORATE(vsprintfcb)(STBSP_SPRINTFCB *callback,
case 'Q':
str = va_arg(va, struct STB_STRING);
if (str.str == 0 && str.len != 0) {
str.str = "null";
str.str = (char *)"null";
str.len = 4;
}
pr = (int)str.len;