[glacier] Create lib with scaffolding string class.

This commit is contained in:
Drew Galbraith 2023-06-21 14:42:23 -07:00
parent 172bf51db7
commit 859fbf66da
4 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,18 @@
#pragma once
#include <stdint.h>
namespace glcr {
class String {
public:
String(const char* cstr);
bool operator==(const String& str);
private:
char* cstr_;
uint64_t length_;
};
} // namespace glcr