vsscanf.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/vsscanf.c
blob: 929ffa3b0fd8a33754b0638536d0893bed74d9a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "stdio_impl.h"
#include "libc.h"
static size_t do_read(FILE *f, unsigned char *buf, size_t len)
{
	return __string_read(f, buf, len);
}
int vsscanf(const char *restrict s, const char *restrict fmt, va_list ap)
{
	FILE f = {
		.buf = (void *)s, .cookie = (void *)s,
		.read = do_read, .lock = -1
	};
	return vfscanf(&f, fmt, ap);
}
weak_alias(vsscanf,__isoc99_vsscanf);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 10:48:52 +0000

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