acadia/lib/glacier/string/string.h
2023-06-21 14:42:23 -07:00

18 lines
215 B
C++

#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