-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Add the following types:
cstring: Represents a char pointer that must end with \0staticstr: Represents a static defined string. Any string primitive that is hard coded will instantly be astaticstrto allow for performanceanystr: Represents any type of primitive string (either acstringor astaticstring)std:strings:lenstr: Represents a struct that contains a size and a null terminated string
The following should be classified as primitives and shadow function compatible:
cstringstaticstranystr
Furthermore, cstring can be passed as a ptr due to it's pointer nature.
Reactions are currently unavailable