diff --git a/src/cobj.h b/src/cobj.h index 6a77a6f..b5fde5f 100644 --- a/src/cobj.h +++ b/src/cobj.h @@ -120,6 +120,7 @@ typedef struct CObjUpval { #define IS_CLOSURE(x) isObjType(x, COBJ_CLOSURE) #define cosmoV_readString(x) ((CObjString*)cosmoV_readRef(x)) +#define cosmoV_readCString(x) (((CObjString*)cosmoV_readRef(x))->str) #define cosmoV_readObject(x) ((CObjObject*)cosmoV_readRef(x)) #define cosmoV_readTable(x) ((CObjTable*)cosmoV_readRef(x)) #define cosmoV_readFunction(x) ((CObjFunction*)cosmoV_readRef(x))