From 6dc2637972f93dea8cc831d7ee225daefb74b8ab Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 6 Oct 2024 10:31:28 +0200 Subject: libc: Add sb_prepend_buffer --- userland/libc/include/tb/sb.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/include/tb/sb.h') diff --git a/userland/libc/include/tb/sb.h b/userland/libc/include/tb/sb.h index 06aa084..c2fa1cf 100644 --- a/userland/libc/include/tb/sb.h +++ b/userland/libc/include/tb/sb.h @@ -22,4 +22,5 @@ void sb_append_buffer(struct sb *ctx, const char *buffer, size_t length); void sb_append_sv(struct sb *ctx, struct sv sv); void sb_prepend_sv(struct sb *ctx, struct sv sv); +void sb_prepend_buffer(struct sb *ctx, const char *buffer, size_t length); #endif -- cgit v1.2.3