Исправление наименования
This commit is contained in:
parent
c9e69ededb
commit
957177e9ec
@ -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 ------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user