summaryrefslogtreecommitdiff
path: root/agbx/source/algo/cp.c
diff options
context:
space:
mode:
Diffstat (limited to 'agbx/source/algo/cp.c')
-rw-r--r--agbx/source/algo/cp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/agbx/source/algo/cp.c b/agbx/source/algo/cp.c
index 347b55d..0eb506c 100644
--- a/agbx/source/algo/cp.c
+++ b/agbx/source/algo/cp.c
@@ -1,14 +1,14 @@
/*
Copyright 2022 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/.
+ If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
*/
#include <ax/priv.h>
#include <ax/algo.h>
-void ax_cp(void const * const _src,ax_i20 const _num,void * const _dest) {
+void ax_cp(void const * const _src,ax_i02 const _num,void * const _dest) {
unsigned char const * src = _src;
unsigned char * dest = _dest;
unsigned char const * const aftersrc = src + _num;