aboutsummaryrefslogtreecommitdiffstats
path: root/src/mem/memset.c
blob: 48fee61c2d087a9b773f92e077c39d56d6fa5b52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright (c) 2023 Marc Pervaz Boocha
 *
 * SPDX-License-Identifier: MIT
 */

#include <mem.h>

extern inline void *calt_memset(void *dest, unsigned char value, size_t count);
extern inline void *calt_memset_null(void *dest, unsigned char value, size_t count);