summaryrefslogtreecommitdiff
path: root/src/stdio/__scanf.h
blob: e549b9796467f3ece932906777f1ef8fbd258bf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <wchar.h>

typedef struct rctx
{
	void (*read)(struct rctx *);
	void *opaque;
	int wide;
	int (*is_space)();
	int l;
	int e;
	int c;
	int u;
	int w;
} rctx_t;

int __scanf(rctx_t *, const wchar_t *, va_list);