@@ -419,6 +419,8 @@ NOBDEF void nob_sb_pad_align(Nob_String_Builder *sb, size_t size);
419419// use it a NULL-terminated C string
420420#define nob_sb_append_null (sb ) nob_da_append_many(sb, "", 1)
421421
422+ #define nob_sb_append nob_da_append
423+
422424// Free the memory allocated by a string builder
423425#define nob_sb_free (sb ) NOB_FREE((sb).items)
424426
@@ -2494,6 +2496,7 @@ NOBDEF char *nob_temp_running_executable_path(void)
24942496 #define sb_append_buf nob_sb_append_buf
24952497 #define sb_append_cstr nob_sb_append_cstr
24962498 #define sb_append_null nob_sb_append_null
2499+ #define sb_append nob_sb_append
24972500 #define sb_pad_align nob_sb_pad_align
24982501 #define sb_free nob_sb_free
24992502 #define Proc Nob_Proc
@@ -2579,6 +2582,7 @@ NOBDEF char *nob_temp_running_executable_path(void)
25792582 BACKWARD INCOMPATIBLE CHANGE!!! If you had code that intentionally didn't enable NOB_STRIP_PREFIX
25802583 because all the names from nob.h were causing too many collisions for you, upgrading to 3.0.0 may break it.
25812584 In that case you should go and explicitly enable NOB_UNSTRIP_PREFIX where needed after upgrading.
2585+ Add nob_sb_append alias to nob_da_append (by @rexim)
25822586 2.0.1 (2026-01-07) Fix Walk_Entry naming (by @Sinha-Ujjawal)
25832587 Using single String Builder in nob__walk_dir_opt_impl (by @Sinha-Ujjawal)
25842588 Add tcc to nob_cc_*() and NOB_REBUILD_URSELF() macros (by @vylsaz)
0 commit comments