Why does memset take an int as the second argument instead of a char, whereas wmemset takes a wchar_t instead of something like long or long long?
|
show 5 more comments
feedback
|
|
It's also worth noting that in C, a character literal like In theory, Edit (responding to the comments): The | |||||||
feedback
|
|
On most platforms, a As the link in @Gui13's comment points out, doing that also increases performance. | |||||||||||||||
feedback
|
|
Actually, it can take a char argument (which gets cast implicitly by the compiler into an int). Have a look at this: http://www.cplusplus.com/reference/clibrary/cstring/memset/ (This is actually C++ but it also works with C) The same applies for wmemset. | |||||||||||
feedback
|
|
See fred's answer, it's for performance reasons. On my side, I tried this code:
And it gives me this on a 64bits Mac:
So as you see, only the last byte gets written. I guess this is dependent on the architecture (endianness). | |||||
feedback
|
code:) – Default May 7 '11 at 7:40wmemsetwas symmetrical it would take awint_t, which is the type defined to be theinttowchar_t'schar. (Hint: several functions in the standard library takeintarguments that are cast to characters. The (C) standard says that character literals are of typeint, notchar.) – Chris Lutz May 7 '11 at 7:42