/* 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 #include #include 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'; }