string length -> uint64

This commit is contained in:
timerix 2022-11-04 23:50:59 +06:00
parent e846f6d304
commit 451358ad6c

View File

@ -10,7 +10,7 @@ extern "C" {
// doesn't store '\0' at the end
typedef struct string{
char* ptr; // char pointer
uint32 length; // amount of chars in ptr value
uint64 length; // amount of chars in ptr value
} string;
ktid_declare(string);