[glacier] Slightly build out string lib.

This commit is contained in:
Drew Galbraith 2023-06-22 02:18:44 -07:00
parent 36d82370c1
commit 8dcb1ddabd
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ class String {
public: public:
String(const char* cstr); String(const char* cstr);
const char* cstr() const { return cstr_; }
uint64_t length() const { return length_; }
bool operator==(const String& str); bool operator==(const String& str);
private: private: