Function (Path Standard C Header / string.h)

memset

void* memset(void *arg1, int val, int count);

Set the memory range to val


Parameters

  void *
  int val
    Write value

  int count
    The length of writing

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

memset

void* memset(void *arg1, int val, int count);

将一段内存设置为val


参数

  void *
  int val
    写入的值

  int count
    写入的长度