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: 2c4ffbe09cbbc1c31431e7cbe2a60f7714d41876 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <string.h>
#include <wchar.h>
#include <wctype.h>
#include "__scanf.h"
static void s_read(rctx_t *r)
{
	wchar_t *s = r->opaque;
	if (!s[r->l]) r->c = -1;
	else r->c = s[r->l++];
}
int vswscanf(const wchar_t *s, const wchar_t *fmt, va_list ap)
{
	rctx_t r = { s_read, (void *)s, 1, iswspace };
	return __scanf(&r, fmt, ap);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月22日 19:05:32 +0000

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