Replacement for vsscanf on msvc
Posted
by ext
on Stack Overflow
See other posts from Stack Overflow
or by ext
Published on 2010-03-16T19:12:22Z
Indexed on
2010/03/16
19:21 UTC
Read the original article
Hit count: 421
Hi, I've run into an issue porting a codebase from linux (gcc) to windows (msvc). It seems like the C99 function vsscanf isn't available and has no obvious replacement.
I've read about a solution using the internal function _input_l and linking statically to the crt runtime, but unfortunately I cannot link statically since it would mess with all the plugins (as dlls) being loaded by the application.
So is there any replacement or a way to write a wrapper for vsscanf?
© Stack Overflow or respective owner