mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
force C function definitions
This commit is contained in:
@ -97,6 +97,13 @@ fn jsdecode_string(root &C.cJSON) string {
|
||||
return tos_clone(root.valuestring)// , _strlen(root.valuestring))
|
||||
}
|
||||
|
||||
fn C.cJSON_IsTrue() bool
|
||||
fn C.cJSON_CreateNumber() &C.cJSON
|
||||
fn C.cJSON_CreateBool() &C.cJSON
|
||||
fn C.cJSON_CreateString() &C.cJSON
|
||||
fn C.cJSON_Parse() &C.cJSON
|
||||
fn C.cJSON_PrintUnformatted() byteptr
|
||||
|
||||
fn jsdecode_bool(root &C.cJSON) bool {
|
||||
if isnil(root) {
|
||||
return false
|
||||
|
Reference in New Issue
Block a user