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

This commit is contained in:
justuser-31 2025-05-09 14:07:18 +03:00
parent c9e69ededb
commit 957177e9ec

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 ------------------