From 1d9fdb684797530d393775a0b422a0df05a7caac Mon Sep 17 00:00:00 2001 From: justuser-31 Date: Thu, 11 Jun 2026 13:18:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B0=D0=B8=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/string.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/string.h b/libs/string.h index cfd8c1b..996c079 100644 --- a/libs/string.h +++ b/libs/string.h @@ -32,8 +32,8 @@ void strSet(string* s, char* str_new) { *s = realloc(*s, strlen(str_new) + nulTerm); strcpy(*s, str_new); } -void strCopy(string* src, string* dst) { - strcpy(*src, *dst); +void strCopy(string* dst, string* src) { + strcpy(*dst, *src); } // -------------- END ------------------