I saw this function in some code and I can't find documentation on google about it. Can someone explain what it does and are there any alternatives to this ?

Thanks.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

See http://msdn.microsoft.com/en-us/library/tsbaswba%28VS.80%29.aspx: it is a generic name for sscanf_s.

EDIT: which is conveniently documented here. _stscanf_s is in TCHAR.H on Windows platforms. You can probably get away with using sscanf_s or swscanf_s.

link|improve this answer
Oh I see, thanks for your answer. – vBx Jun 27 '11 at 7:35
feedback

This MSDN article shows the _stscanf_s variant of their "secure" sscanf replacements:

http://msdn.microsoft.com/en-us/library/t6z7bya3(v=vs.80).aspx

It is a TCHAR variant, which means that it should be able to support ANSI characters, and Unicode/Multi-byte, depending on how the app is compiled.

You could (somewhat) replace it with sscanf on a more generic C/C++ implementation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.