Leaked source code of windows server 2003
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
939 B

  1. /***
  2. *swscanf.c - read formatted data from wide-character string
  3. *
  4. * Copyright (c) 1991-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * defines _swscanf() - reads formatted data from wide-character string
  8. *
  9. *Revision History:
  10. * 11-21-91 ETC Created from sscanf.c
  11. * 05-16-92 KRS Revised for new ISO spec. format is wchar_t * now.
  12. * 02-18-93 SRW Make FILE a local and remove lock usage.
  13. * 04-06-93 SKS Replace _CRTAPI* with __cdecl
  14. * 02-07-94 CFW POSIXify.
  15. * 02-06-94 CFW assert -> _ASSERTE.
  16. * 01-06-99 GJF Changes for 64-bit size_t.
  17. * 09-12-00 GB Merged with sscanf.c
  18. *
  19. *******************************************************************************/
  20. #ifndef _POSIX_
  21. #ifndef _UNICODE
  22. #define _UNICODE
  23. #endif
  24. #ifndef UNICODE
  25. #define UNICODE
  26. #endif
  27. #include <wchar.h>
  28. #include "sscanf.c"
  29. #endif /* _POSIX_ */