Function (Path Standard C Header / string.h)

memcmp

int memcmp(void *lhs, void *rhs, int count);

Compare the given two [memory, memory+count)


Parameters

  void *lhs
    Memory 2

  void *rhs
  int count
    Compare length

函数 (属于 标准C头文件 / string.h)

memcmp

int memcmp(void *lhs, void *rhs, int count);

计算两个字符串的标准差值,比较count个长度


参数

  void *lhs
    内存1

  void *rhs
    内存2

  int count
    比较长度