aboutsummaryrefslogtreecommitdiff
path: root/strbuf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'strbuf.cpp')
-rw-r--r--strbuf.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/strbuf.cpp b/strbuf.cpp
index 3864b271..7b63c58d 100644
--- a/strbuf.cpp
+++ b/strbuf.cpp
@@ -2,6 +2,12 @@
#include <cstdlib>
+strbuf::strbuf (const strbuf& other) {
+ this->alloc = other.len + 1;
+ this->mem = static_cast<char*>(malloc(this->alloc));
+ strncpy(this->mem, other.mem, other.len);
+}
+
void strbuf::realloc (size_t len) {
this->mem = static_cast<char*>(std::realloc(this->mem, len));
this->alloc = len;