Added cosmoV_readCString for convenience

This commit is contained in:
Inversion 2021-02-10 22:14:31 -08:00 committed by cpunch
parent 8b931fa4a7
commit 76574c7860
1 changed files with 1 additions and 0 deletions

View File

@ -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))