summaryrefslogtreecommitdiff
path: root/zap/source/amd64/mem/strcat.c
blob: f7f66c85389b38a29876c527e2a063d20a47e41e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
	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/.
*/

#include <zap/priv.h>

#include <zap/mem.h>

#include <stddef.h>

void zap_strcat(char const * const _lstr,char const * const _rstr,char * const _buf) {
	zap_sz const llen = zap_strlen (_lstr);
	zap_sz const rlen = zap_strlen (_rstr);
	zap_memcp(_lstr,llen,_buf);
	zap_memcp(_rstr,rlen,_buf + llen);
	_buf[llen + rlen] = '\x0';
}