sb_fprint

This commit is contained in:
2025-12-12 20:09:41 +01:00
parent 65b5905f00
commit 9398c0bf0e
4 changed files with 26 additions and 43 deletions
+1
View File
@@ -309,6 +309,7 @@ void sb_add_u16(string_builder_t *this, uint16_t u16);
void sb_add_u8(string_builder_t *this, uint8_t u8);
void sb_add_substring(string_builder_t *this, const char *string, size_t substring_length);
const char *sb_build(string_builder_t *this, allocator_t output_allocator);
void sb_fprint(string_builder_t *this, FILE *dest);
#ifdef CIG_IMPL