More progress

This commit is contained in:
Joshua Granick
2018-05-25 16:57:41 -07:00
parent 5dc5f47dd4
commit 742406c0cc
3 changed files with 42 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
#ifndef LIME_UTILS_STRING_H
#define LIME_UTILS_STRING_H
#include <hl.h>
namespace lime {
struct HL_String {
hl_type* t;
unsigned char* bytes;
int length;
};
}
#endif