-aprintf :: (allocator: Allocator, format: str, va: ...) -> str {
- // @Robustness: Same potential overflow bug.
- buffer: [2048] u8;
- formatted := conv.str_format_va(format, ~~buffer, va);
-
- output := string.alloc_copy(formatted, allocator = allocator);
- return output;
-}
+// aprintf :: (allocator: Allocator, format: str, va: ..any) -> str {
+// // @Robustness: Same potential overflow bug.
+// buffer: [2048] u8;
+// formatted := conv.format_va(buffer, format, va);
+//
+// output := string.alloc_copy(formatted, allocator = allocator);
+// return output;
+// }