You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// получить const char* копию (Cstr конвертируется в const char*). Всегда валидна и терминирована. Если Text из PGM или не терминирован - будет создана временная копия
651
-
Cstr c_str() const {
652
-
returnCstr(*this);
655
+
Cstr c_str(bool forceDup = false) const {
656
+
returnCstr(*this, forceDup);
653
657
}
654
658
655
659
// Вывести в String строку. Вернёт false при неудаче
0 commit comments