vswscanf.c\stdio\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/vswscanf.c
blob: 00b614bc2f5af24079ebd4f9a793e92090b26647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "stdio_impl.h"
#include <wchar.h>
static size_t wstring_read(FILE *f, unsigned char *buf, size_t len)
{
	const wchar_t *src = f->cookie;
	size_t k;
	if (!src) return 0;
	k = wcsrtombs((void *)f->buf, &src, f->buf_size, 0);
	if (k==(size_t)-1) {
		f->rpos = f->rend = 0;
		return 0;
	}
	f->rpos = f->buf;
	f->rend = f->buf + k;
	f->cookie = (void *)src;
	if (!len || !k) return 0;
	*buf = *f->rpos++;
	return 1;
}
int vswscanf(const wchar_t *restrict s, const wchar_t *restrict fmt, va_list ap)
{
	unsigned char buf[256];
	FILE f = {
		.buf = buf, .buf_size = sizeof buf,
		.cookie = (void *)s,
		.read = wstring_read, .lock = -1
	};
	return vfwscanf(&f, fmt, ap);
}
weak_alias(vswscanf,__isoc99_vswscanf);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 19:21:48 +0000

AltStyle によって変換されたページ (->オリジナル) /