There was a question recently on SO (Why on earth would anyone use strncpy instead of strcpy?), which hade answers (answer 1, answer 2), that made me uncertain about other string functions with 'n' in their name, like snprintf (which I have been using extensively). Is snprintf safe to use? And generally, what are the safe functions from the 'n' family?
|
|
|||||||
|
|
Most of the other 'n' functions that deal with strings do properly terminate the string, but there are exceptions like Microsoft's bastardized There's a 'Technical Report', TR 24731 that proposes a set of boundary-checking alternatives for functions that deal with strings and memory buffers. One of the goals of the TR is to have the parameters, results and error behavior of the functions be more similar across the functions. The TR seems to have somewhat mixed acceptance, and I don't think it's widely implemented other than for Microsoft's compiler (I think MS was the main driver behind the TR). you can get more information here:
Even if you're not a fan of the proposals, I think they make for educational reading about the issues with existing functions. |
|||
|
|
|
It is safe as you long as you provide the correct length for the buffer. |
|||
|
|
While |
|||
|
|
|
Beware: different platforms have different behaviors concerning null termination of a string passed to |
|||||||||||||||||||
|
|
snprintf does guarantee that the buffer won't be overwritten, but it does not guarantee null-termination. use sprintf_s. See http://msdn.microsoft.com/en-us/library/2ts7cx93%28VS.71%29.aspx |
|||||||||||||||
|