]> git.saurik.com Git - apple/libc.git/blobdiff - stdio/FreeBSD/fwscanf.c
Libc-1244.1.7.tar.gz
[apple/libc.git] / stdio / FreeBSD / fwscanf.c
index 47e8550215d998fc6041e8b7dddb834e3733d6c6..4fefaea1152148dbf23d21e815f034723a6ba782 100644 (file)
@@ -27,6 +27,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD: src/lib/libc/stdio/fwscanf.c,v 1.1 2002/09/23 12:40:06 tjr Exp $");
 
+#include "xlocale_private.h"
+
 #include <stdarg.h>
 #include <stdio.h>
 #include <wchar.h>
@@ -38,7 +40,21 @@ fwscanf(FILE * __restrict fp, const wchar_t * __restrict fmt, ...)
        int r;
 
        va_start(ap, fmt);
-       r = vfwscanf(fp, fmt, ap);
+       r = vfwscanf_l(fp, __current_locale(), fmt, ap);
+       va_end(ap);
+
+       return (r);
+}
+
+int
+fwscanf_l(FILE * __restrict fp, locale_t loc, const wchar_t * __restrict fmt, ...)
+{
+       va_list ap;
+       int r;
+
+       /* no need to call NORMALIZE_LOCALE(loc) because vfwscanf_l will */
+       va_start(ap, fmt);
+       r = vfwscanf_l(fp, loc, fmt, ap);
        va_end(ap);
 
        return (r);