From 73ec1d0495bb676012fd69491900ca8beb989ef7 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 17 Apr 2012 14:19:46 -0400 Subject: introduce new wide scanf code and remove the last remnants of old scanf at this point, strto* and all scanf family functions are using the new unified integer and floating point parser/converter code. the wide scanf is largely a wrapper for ordinary byte-based scanf; since numbers can only contain ascii characters, only strings need to be handled specially. --- src/stdio/__scanf.h | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/stdio/__scanf.h (limited to 'src/stdio/__scanf.h') diff --git a/src/stdio/__scanf.h b/src/stdio/__scanf.h deleted file mode 100644 index e549b979..00000000 --- a/src/stdio/__scanf.h +++ /dev/null @@ -1,16 +0,0 @@ -#include - -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); -- cgit v1.2.1