wscanf.c (1f4ff8506a801b76186abcb5690294b81ca2b754) | wscanf.c (3c87aa1d3dc1d8dad3efad322852a8e1e76dee55) |
---|---|
1/*- 2 * Copyright (c) 2002 Tim J. Robbins 3 * All rights reserved. 4 * | 1/*- 2 * Copyright (c) 2002 Tim J. Robbins 3 * All rights reserved. 4 * |
5 * Copyright (c) 2011 The FreeBSD Foundation 6 * All rights reserved. 7 * Portions of this software were developed by David Chisnall 8 * under sponsorship from the FreeBSD Foundation. 9 * |
|
5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. --- 12 unchanged lines hidden (view full) --- 25 */ 26 27#include <sys/cdefs.h> 28__FBSDID("$FreeBSD$"); 29 30#include <stdarg.h> 31#include <stdio.h> 32#include <wchar.h> | 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. --- 12 unchanged lines hidden (view full) --- 30 */ 31 32#include <sys/cdefs.h> 33__FBSDID("$FreeBSD$"); 34 35#include <stdarg.h> 36#include <stdio.h> 37#include <wchar.h> |
38#include <xlocale.h> |
|
33 34int 35wscanf(const wchar_t * __restrict fmt, ...) 36{ 37 va_list ap; 38 int r; 39 40 va_start(ap, fmt); 41 r = vfwscanf(stdin, fmt, ap); 42 va_end(ap); 43 44 return (r); 45} | 39 40int 41wscanf(const wchar_t * __restrict fmt, ...) 42{ 43 va_list ap; 44 int r; 45 46 va_start(ap, fmt); 47 r = vfwscanf(stdin, fmt, ap); 48 va_end(ap); 49 50 return (r); 51} |
52int 53wscanf_l(locale_t locale, const wchar_t * __restrict fmt, ...) 54{ 55 va_list ap; 56 int r; 57 58 va_start(ap, fmt); 59 r = vfwscanf_l(stdin, locale, fmt, ap); 60 va_end(ap); 61 62 return (r); 63} |
|