From: git Date: Fri, 17 Apr 2026 15:06:17 +0000 (-0400) Subject: revise function formatting X-Git-Url: https://git.datadissipation.net/?a=commitdiff_plain;h=e778bd0bcc20f7bc4fe76e3c16f83a5a498dcd25;p=single-header-libcext.git revise function formatting --- diff --git a/asprintf.h b/asprintf.h index 4a2f919..dc944df 100644 --- a/asprintf.h +++ b/asprintf.h @@ -53,7 +53,9 @@ #endif #ifdef ASPRINTF_IMPLEMENTATION_ - int vasprintf_(char **strp, const char *fmt, va_list ap) { + int + vasprintf_(char **strp, const char *fmt, va_list ap) + { int size, ret; va_list tp; @@ -78,7 +80,9 @@ return ret; } - int asprintf_(char **strp, const char *fmt, ...) { + int + asprintf_(char **strp, const char *fmt, ...) + { int ret; va_list ap;