Update vnode comparison interface (vtype_variable)

This commit is contained in:
2023-03-23 23:47:08 +03:00
parent 3e860c26d3
commit 2b1bccb7e8
20 changed files with 129 additions and 120 deletions
+2 -2
View File
@@ -80,8 +80,8 @@ typedef struct libcdsb_string vtype_string;
typedef struct libcdsb_variable vtype_variable;
extern const char* libcdsb_vtype_name (vtype t) Warn_unused_result__;
extern const char* libcdsb_vtype_stringify(const void* value, vtype t) Warn_unused_result__;
extern const char* libcdsb_vtype_name (vtype t) Warn_unused_result__;
extern const char* libcdsb_vtype_stringify(vtype_variable value) Warn_unused_result__;
inline vtype_variable libcdsb_variable_build(void* value, vtype t) Always_inline__;