blob: 2c1b265a2a6260b99d1640bb6dc9074fa145b579 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
Copyright 2022-2023 Gabriel Jensen.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
*/
#include <zap/mem.h>
void zap_cp(void * const zap_priv_restr _dest,void const * const zap_priv_restr _src,zap_sz const _num) {
zap_i8 * dest;
zap_i8 const * src;
zap_i8 * const stop = (zap_i8 *)_dest + _num;
for (dest = _dest,src = _src;dest != stop;++dest,++src) {
*dest = *src;
}
}
|