/
index
/
single-header-libcext.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
46010a8
)
revise function formatting
author
git
<redacted>
Fri, 17 Apr 2026 15:06:17 +0000
(11:06 -0400)
committer
git
<redacted>
Fri, 17 Apr 2026 15:07:53 +0000
(11:07 -0400)
asprintf.h
patch
|
blob
|
history
diff --git
a/asprintf.h
b/asprintf.h
index 4a2f9195dae1894e7e5193aa6c3241fea19879ab..dc944df384cceed12d21c5aed606a7c0c07bf6d5 100644
(file)
--- 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;