提交 7c59d098 编写于 作者: R Rich Felker

in vswprintf, initialize the FILE rather than memset-and-assign

this is the idiom that's used elsewhere and should be more efficient
or at least no worse.
上级 aaa29c26
#include "stdio_impl.h"
#include <limits.h>
#include <string.h>
#include <errno.h>
#include <stdint.h>
#include <wchar.h>
......@@ -37,17 +36,17 @@ static size_t sw_write(FILE *f, const unsigned char *s, size_t l)
int vswprintf(wchar_t *restrict s, size_t n, const wchar_t *restrict fmt, va_list ap)
{
int r;
FILE f;
unsigned char buf[256];
struct cookie c = { s, n-1 };
FILE f = {
.lbf = EOF,
.write = sw_write,
.lock = -1,
.buf = buf,
.buf_size = sizeof buf,
.cookie = &c,
};
memset(&f, 0, sizeof(FILE));
f.lbf = EOF;
f.write = sw_write;
f.buf_size = sizeof buf;
f.buf = buf;
f.lock = -1;
f.cookie = &c;
if (!n) {
return -1;
} else if (n > INT_MAX) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册