avoid depending on POSIX symbol in code used from plain C functions
[musl] / src / stdio / __scanf.h
1 #include <wchar.h>
2
3 typedef struct rctx
4 {
5         void (*read)(struct rctx *);
6         void *opaque;
7         int wide;
8         int (*is_space)();
9         int l;
10         int e;
11         int c;
12         int u;
13         int w;
14 } rctx_t;
15
16 int __scanf(rctx_t *, const wchar_t *, va_list);