鲲鹏社区首页
中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助

memset

函数功能

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

函数定义

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

参数说明

参数名

描述

取值范围

输入/输出

destination

指向用于存储重置内容的目标内存指针。

非空

输出

value

重置的目标值。

任意值

输入

size

被重置的字节数。

非负数

输入

返回值

  • 成功:返回指向目标存储区内存的指针
  • 失败:返回空指针

示例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#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;
}

运行结果:

1
2
3
4
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