diff options
Diffstat (limited to 'val.h')
-rw-r--r-- | val.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -49,6 +49,7 @@ typedef struct { // Constructs a new objstring from the given C string, // creating its own fresh copy of the data. ObjString *objstring_copy(State *S, char *src, size_t len); +ObjString *objstring_copy_cstr(State *s, char *str); // Constructs a new objstring from the given C string, // taking ownership of the provided data. ObjString *objstring_take(State *S, char *src, size_t len); |