一、memcmp含义
Compare characters in two buffers.
int memcmp( const void* buf1, const void* buf2, size_t count );
inline int wmemcmp ( const wchar_t* buf1, const wchar_t* buf2, size_t count);
Parameters
buf1 : First buffer.
buf2 : Second buffer.
count : Number of characters.
Return Values : The return value indicates the relationship between the buffers.
Return Value Relationship of First count Bytes of buf1 and buf2
<