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

#include <mem.h>

extern inline void *calt_memcpy(void *restrict dest, void const *restrict src,
			      size_t count);


extern inline void *calt_memcpy_null(void *restrict dest, void const *restrict src,
			      size_t count);