memset() is declared to return void* that is always the same value as the address passed into the function.
What's the use of the return value? Why does it not return void?
|
The signature is in line with all the other similar functions: That said, I've never come across a real-world situation where I would feel compelled to use the return value in such a manner. |
||||
|
|
|
It may be used for call chaining like:
|
|||||||||||||
|
|
In order to use the function as an argument for another function such as |
||||
|
|
|
I came across this question when Googling to see what memset returned. I have some code where I test for one value, then if that is true test to see if a value is zeros. Because there is no completely portable way in C to test for zeros I have to run memset in the middle. So my code is:
This speaks to the chaining purpose listed in the previous questions, but it is an example of a use for this technique. I'll leave it to others to judge if this is good coding or not. |
||||
|
|
strcat()? Sometimes, standard functions are what they are specified to be, not what they should be. – DevSolar Dec 5 '12 at 10:18voidreturn values ? Isn't it better to always return something (and the more meaningful the better) ? – Matthieu M. Dec 5 '12 at 10:28