Commit 9747c15a authored by Jukka Heinonen's avatar Jukka Heinonen Committed by Alexandre Julliard

Functions sscanf and swscanf now expect strings to be terminated with

null (0) instead of EOF (-1).
parent f3897934
......@@ -47,6 +47,8 @@
#define _FUNCTION_ _cscanf(const _CHAR_ *format, ...)
#else
#ifdef STRING
#undef _EOF_
#define _EOF_ 0
#define _GETC_(file) *file++
#define _UNGETC_(nch, file) file--
#ifdef WIDE_SCANF
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment