#include #include "_stdio.h" int vsnprintf_s(char * restrict s, rsize_t n, const char * restrict format, va_list arg) { struct io_options opt = { .fnname = __func__, .string = s, .maxlen = n, }; return __printf(&opt, format, ap); } /* CEXT1(201112) */