mirror of
https://github.com/zeldaret/ss
synced 2026-08-15 04:50:05 -04:00
d_message OK (via dFlow_c)
This commit is contained in:
@@ -43,6 +43,13 @@ struct SizedString {
|
||||
}
|
||||
}
|
||||
|
||||
void set(const char *src) {
|
||||
if (src != mChars) {
|
||||
mChars[0] = '\0';
|
||||
append(src);
|
||||
}
|
||||
}
|
||||
|
||||
void operator+=(const char *src) {
|
||||
if (src != nullptr) {
|
||||
append(src);
|
||||
|
||||
Reference in New Issue
Block a user