diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-08 01:50:15 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-02 20:44:53 -0600 |
commit | bb33c30ad89e28d5ff9f4d8073d4f9ee068f484d (patch) | |
tree | d789df9a517dfb35ec0beca3211f85164b0e554f /libfmt/libobj.c | |
parent | 797164f75b91c5cdfb68fc91d6853e7609d97e12 (diff) |
libfmt: Add %v for libobj to implement
Diffstat (limited to 'libfmt/libobj.c')
-rw-r--r-- | libfmt/libobj.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libfmt/libobj.c b/libfmt/libobj.c new file mode 100644 index 0000000..e4b833b --- /dev/null +++ b/libfmt/libobj.c @@ -0,0 +1,17 @@ +/* libfmt/libobj.c - Integrate pico-fmt with libobj + * + * Copyright (C) 2025 Luke T. Shumaker <lukeshu@lukeshu.com> + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +#include <libfmt/fmt.h> + +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); +} |