What is the direct alternative for the vsnwprintf function on linux machines and what headers should be included to use it?
Thanks for any advice
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on what
vsnwprintf()(sic) does and what is its parameter list.The C99 Standard describes
vswprintf()(in section 7.24.2.7). To use it you need to #include<stdarg.h>and<wchar.h>. The implementation should be in the Standard library.