Исправление наименования

This commit is contained in:
2026-06-11 13:18:12 +03:00
parent b2f3a84baf
commit 1d9fdb6847
+2 -2
View File
@@ -32,8 +32,8 @@ void strSet(string* s, char* str_new) {
*s = realloc(*s, strlen(str_new) + nulTerm); *s = realloc(*s, strlen(str_new) + nulTerm);
strcpy(*s, str_new); strcpy(*s, str_new);
} }
void strCopy(string* src, string* dst) { void strCopy(string* dst, string* src) {
strcpy(*src, *dst); strcpy(*dst, *src);
} }
// -------------- END ------------------ // -------------- END ------------------