2016-05-12 04:36:12 +08:00
|
|
|
---
|
|
|
|
title: "mg_avprintf()"
|
|
|
|
decl_name: "mg_avprintf"
|
|
|
|
symbol_kind: "func"
|
|
|
|
signature: |
|
|
|
|
int mg_avprintf(char **buf, size_t size, const char *fmt, va_list ap);
|
|
|
|
---
|
|
|
|
|
2016-07-26 22:53:33 +08:00
|
|
|
Prints message to the buffer. If the buffer is large enough to hold the
|
|
|
|
message, it returns buffer. If buffer is to small, it allocates a large
|
|
|
|
enough buffer on heap and returns allocated buffer.
|
2016-05-12 04:36:12 +08:00
|
|
|
This is a supposed use case:
|
|
|
|
|
|
|
|
char buf[5], *p = buf;
|
|
|
|
p = mg_avprintf(&p, sizeof(buf), "%s", "hi there");
|
|
|
|
use_p_somehow(p);
|
|
|
|
if (p != buf) {
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
The purpose of this is to avoid malloc-ing if generated strings are small.
|
|
|
|
|