Mike D
Mike D

Reputation: 2841

where is sscanf_s?

sscanf_s is undefined on my system. The definition is not included in any of the stdio.h files I have from various SDKs. I searched all files on my system for this.

I have microsoft visual c++ 6.0

what is the proper .h file and library and where do I get them?

Upvotes: 0

Views: 4118

Answers (1)

hmjd
hmjd

Reputation: 121971

sscanf_s() is a Microsoft only function, and, based on this, was introducted in VS 2005 so is not available in VS 6.0.

Either use sscanf() or upgrade your compiler.

Upvotes: 1

Related Questions