blob: 4d3724b0de77eaecbf2c13a94d173d0ec7ab8026 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* libfmt/libmisc.c - Integrate pico-fmt with libmisc
*
* Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <libfmt/fmt.h> /* for fmt_vfctprintf() */
static void libfmt_conv_formatter(struct fmt_state *state) {
lo_interface fmt_formatter obj = va_arg(*state->args, lo_interface fmt_formatter);
LO_CALL(obj, format, state);
}
[[gnu::constructor]]
static void libfmt_install_formatter(void) {
fmt_install('v', libfmt_conv_formatter);
}
|