---
title: memset
description: "将目标内存中指定长度字节数的数据设置为指定的值。"
url: https://www.hikunpeng.com/document/detail/zh/kunpengboostkithistory/2300/accel/kunpengaccel_ksl_16_0025.html
sourcePath: /source/zh/kunpengboostkithistory/2300/accel/kunpengaccel_ksl_16_0025.html
indexId: a52d3538a891735a8c07971eba473d9b686c17f5639bd155e4971cacc726d35e74
---
# memset

将目标内存中指定长度字节数的数据设置为指定的值。

void *memset(void *destination, int value, size_t size);

#### 参数

| 参数名 | 描述 | 取值范围 | 输入/输出 |
| --- | --- | --- | --- |
| destination | 指向用于存储重置内容的目标内存指针。 | 非空 | 输出 |
| value | 重置的目标值。 | 任意值 | 输入 |
| size | 被重置的字节数。 | 非负数 | 输入 |


#### 返回值

- 成功：返回指向目标存储区内存的指针。
- 失败：返回空指针。


#### 示例

```
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "kqmalloc.h"
#define KQMALLOC_TEST_LEN 10
void MemsetExample()
{
int8_t *destination = (int8_t *)malloc(KQMALLOC_TEST_LEN * sizeof(int8_t));
if (destination == NULL) {
printf("destination is null\n");
return;
} else {
printf("destination address: %lx\n", destination);
for (int8_t i = 0; i < KQMALLOC_TEST_LEN; ++i) {
destination[i] = i;
}
printf("destination test data before memcpy:");
for (int8_t i = 0; i < KQMALLOC_TEST_LEN; ++i) {
printf(" %d", destination[i]);
}
printf("\n");
}
int8_t *res = memset(destination , 1, KQMALLOC_TEST_LEN * sizeof(int8_t));
printf("res address: %lx\n", res);
if (res != NULL) {
printf("res test data after memcpy:");
for (int8_t i = 0; i < KQMALLOC_TEST_LEN; ++i) {
printf(" %d", res[i]);
}
printf("\n");
}
free(destination);
}
int main(void) {
MemsetExample();
return 0;
}
```

运行结果：

```
destination address: ffff9fe17174
destination test data before memcpy: 0 1 2 3 4 5 6 7 8 9
res address: ffff9fe17174
res test data after memcpy: 1 1 1 1 1 1 1 1 1 1
```
