Windows API(不是CRT)是否具有内存比较功能?

时间:2013-09-01 21:21:18

标签: windows winapi memory

我知道我可以在Windows中使用memcmp,但我想知道平台是否存在像CompareMemory这样的原生内容。我听说过RtlCompareMemory,但这显然是针对司机的。

1 个答案:

答案 0 :(得分:1)

据此 https://support.microsoft.com/en-us/help/99456/win32-equivalents-for-c-run-time-functions

似乎没有与memcmp等效的Win32。

还值得注意的是RtlCompareMemory的返回值与memcmp不同。它返回相同字节的计数。