Tuesday, June 28, 2011

The Myth of memset()

memset() according to its specification:
                     void * memset ( void * ptr, int value, size_t num );
However, the value will be converted to unsigned char before calling the actual memset().

No comments:

Post a Comment