mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
909 B
30 lines
909 B
/***
|
|
*swscanf.c - read formatted data from wide-character string
|
|
*
|
|
* Copyright (c) 1991-2001, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* defines _swscanf() - reads formatted data from wide-character string
|
|
*
|
|
*Revision History:
|
|
* 11-21-91 ETC Created from sscanf.c
|
|
* 05-16-92 KRS Revised for new ISO spec. format is wchar_t * now.
|
|
* 02-18-93 SRW Make FILE a local and remove lock usage.
|
|
* 04-06-93 SKS Replace _CRTAPI* with __cdecl
|
|
* 02-07-94 CFW POSIXify.
|
|
* 02-06-94 CFW assert -> _ASSERTE.
|
|
* 01-06-99 GJF Changes for 64-bit size_t.
|
|
* 09-12-00 GB Merged with sscanf.c
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#ifndef _POSIX_
|
|
#ifndef _UNICODE
|
|
#define _UNICODE
|
|
#endif
|
|
#ifndef UNICODE
|
|
#define UNICODE
|
|
#endif
|
|
#include <wchar.h>
|
|
#include "sscanf.c"
|
|
#endif /* _POSIX_ */
|