6 lines
179 B
C
6 lines
179 B
C
/* Returns 0: if both memory buffers are the same
|
|
* Return !0: if the memory buffers are not the same
|
|
*
|
|
*/
|
|
int memcmp(const void* left, const void* right, const size_t size);
|